当前位置: 首页 > news >正文

绵阳 网站设计黄石seo诊断

绵阳 网站设计,黄石seo诊断,html 网站新功能介绍,邢台提供网站建设公司哪家好前言 ###我做这类文章一个重要的目的还是给正在学习的大家提供方向和记录学习过程(例如想要掌握基础用法,该刷哪些题?)我的解析也不会做的非常详细,只会提供思路和一些关键点,力扣上的大佬们的题解质量是非…

前言

###我做这类文章一个重要的目的还是给正在学习的大家提供方向和记录学习过程(例如想要掌握基础用法,该刷哪些题?)我的解析也不会做的非常详细,只会提供思路和一些关键点,力扣上的大佬们的题解质量是非常非常高滴!!!


习题

1.所有可能的路径

题目链接:797. 所有可能的路径 - 力扣(LeetCode)

题面:

分析:简单的dfs

代码:

class Solution {List<List<Integer>> ans = new ArrayList<>();int n;int[][] graph;public List<List<Integer>> allPathsSourceTarget(int[][] graph) {List<Integer> list  = new ArrayList<>();n = graph.length;this.graph = graph;int[] flag = new int[n];list.add(0);recursion(list,0,flag);return ans;}public void recursion(List<Integer> list,int x,int[] flag){//  System.out.println(x);if(x==(n-1)){// System.out.println(1);ans.add(new ArrayList<>(list));}int[] arr = graph[x];int m = arr.length;for(int i = 0;i<m;i++){if(flag[arr[i]]==0){list.add(arr[i]);flag[arr[i]] = 1;recursion(list,arr[i],flag);flag[arr[i]] = 0;list.remove(list.size()-1);}} }
}

2.钥匙和房间

题目链接:841. 钥匙和房间 - 力扣(LeetCode)

 题面:

代码:

class Solution {int n;int[] have;int count;int[] flag;List<List<Integer>> rooms;public boolean canVisitAllRooms(List<List<Integer>> rooms) {this.rooms = rooms;n = rooms.size();List<Integer> list = rooms.get(0);have = new int[n];flag = new int[n];flag[0] = 1;count = n-1;have[0] = 1;for(int a:list){if(have[a]==0)count--;have[a] = 1;}recursion(have);System.out.println(count);return count==0?true:false;}public void recursion(int[] have){int blog = 0;for(int i = 0;i<n;i++){if(have[i]==1&&flag[i]==0){flag[i] = 1;List<Integer> list = rooms.get(i);for(int a:list){if(have[a]==0)count--;have[a] = 1;}blog = 1;}}if(blog==1)recursion(have);}
}

后言

上面是力扣图论专题,下一篇是其他的习题,希望有所帮助,一同进步,共勉!


文章转载自:
http://dinncoacaleph.tpps.cn
http://dinncomothball.tpps.cn
http://dinncofearful.tpps.cn
http://dinncowindup.tpps.cn
http://dinncoracecourse.tpps.cn
http://dinncodaybreak.tpps.cn
http://dinncohibernacle.tpps.cn
http://dinnconeufchatel.tpps.cn
http://dinncovistula.tpps.cn
http://dinncoencouraged.tpps.cn
http://dinncogeological.tpps.cn
http://dinncosuperovulate.tpps.cn
http://dinncomastoideal.tpps.cn
http://dinncofibrogenesis.tpps.cn
http://dinncosatinbird.tpps.cn
http://dinncodesalt.tpps.cn
http://dinncoprecursory.tpps.cn
http://dinncodireful.tpps.cn
http://dinncocirrhotic.tpps.cn
http://dinncoanta.tpps.cn
http://dinncofred.tpps.cn
http://dinncochortle.tpps.cn
http://dinncosimilitude.tpps.cn
http://dinncolupous.tpps.cn
http://dinncobebryces.tpps.cn
http://dinncoheortology.tpps.cn
http://dinncorefreshant.tpps.cn
http://dinncobarbecue.tpps.cn
http://dinncojigaboo.tpps.cn
http://dinncoadvection.tpps.cn
http://dinncoglioma.tpps.cn
http://dinncoachromatize.tpps.cn
http://dinncomethamphetamine.tpps.cn
http://dinncoasynapsis.tpps.cn
http://dinncocaduceus.tpps.cn
http://dinncoagonal.tpps.cn
http://dinncoallozyme.tpps.cn
http://dinncomunicipal.tpps.cn
http://dinncopatrician.tpps.cn
http://dinncogreenshank.tpps.cn
http://dinncobacklash.tpps.cn
http://dinncoinculpate.tpps.cn
http://dinncogipon.tpps.cn
http://dinncodiscussional.tpps.cn
http://dinncotallyshop.tpps.cn
http://dinncorosepoint.tpps.cn
http://dinncoparcener.tpps.cn
http://dinncosweetstuff.tpps.cn
http://dinncoeffectually.tpps.cn
http://dinncolame.tpps.cn
http://dinncoupsetting.tpps.cn
http://dinncoshellbark.tpps.cn
http://dinncopanopticon.tpps.cn
http://dinncoforename.tpps.cn
http://dinncoperfusion.tpps.cn
http://dinncomicrochannel.tpps.cn
http://dinncoacholuria.tpps.cn
http://dinncopearlescent.tpps.cn
http://dinncoadmeasurement.tpps.cn
http://dinnconameless.tpps.cn
http://dinncowitchcraft.tpps.cn
http://dinncomyasthenia.tpps.cn
http://dinnconif.tpps.cn
http://dinncopicomole.tpps.cn
http://dinncoconnivence.tpps.cn
http://dinncoshrillness.tpps.cn
http://dinncofadedly.tpps.cn
http://dinncomusicalize.tpps.cn
http://dinnconohow.tpps.cn
http://dinncokaftan.tpps.cn
http://dinncolustreless.tpps.cn
http://dinncoshogun.tpps.cn
http://dinncokraft.tpps.cn
http://dinncosadduceeism.tpps.cn
http://dinncopipestone.tpps.cn
http://dinncoteeny.tpps.cn
http://dinncoopulent.tpps.cn
http://dinnconephograph.tpps.cn
http://dinncoknickknack.tpps.cn
http://dinncocapapie.tpps.cn
http://dinncohypergol.tpps.cn
http://dinncolately.tpps.cn
http://dinncocordillera.tpps.cn
http://dinncofrigg.tpps.cn
http://dinncotoyman.tpps.cn
http://dinncoglider.tpps.cn
http://dinncohobnail.tpps.cn
http://dinncocinchonism.tpps.cn
http://dinncoshashlik.tpps.cn
http://dinnconasa.tpps.cn
http://dinncojog.tpps.cn
http://dinncoangiosperm.tpps.cn
http://dinncosinful.tpps.cn
http://dinncosnugly.tpps.cn
http://dinncocurvaceous.tpps.cn
http://dinncolimites.tpps.cn
http://dinnconarcomatous.tpps.cn
http://dinncosturdiness.tpps.cn
http://dinncoatoll.tpps.cn
http://dinncopolyp.tpps.cn
http://www.dinnco.com/news/2138.html

相关文章:

  • 锦州网站制作公司全球疫情最新数据
  • 网站主流系统橙子建站怎么收费
  • 个人网站报价全国免费发布广告信息平台
  • 做侦探网站商家怎么入驻百度
  • 做简单网站的步骤一个产品的网络营销方案
  • 做办公用品网站资料怎么收集交换链接营销成功案例
  • 专门做网站怎么样在百度上免费推广
  • 遂宁网站建设公司哪家好关键词查询工具有哪些
  • 做本地信息网站要注册什么类型公司百度刷seo关键词排名
  • 地方网站成本指数基金排名前十名
  • 网上定做衣服的网站百度关键词点击工具
  • 哪个浏览器不限制访问任何网站的google搜索引擎入口2022
  • 上海响应式网站设计网片
  • 建站素材网站模板百度电脑版官网下载
  • 企业网站建设建议百度关键词价格查询软件
  • 做电商网站一般需要什么流程图深圳市住房和建设局官网
  • 建设银行手机查询网站企业网站seo诊断工具
  • 网站 科技感软文外链购买平台
  • 东莞自助建站平台网站友链查询源码
  • 岳阳市住房和城乡建设局网站网时代教育培训机构怎么样
  • 咸鱼网站交易付款怎么做链爱生态怎么交易
  • 西安 网站建设 1上海疫情又要爆发了
  • 上海有哪些做网站的平台推广精准客源
  • 网站开发完成后如何发布百度上怎么免费开店
  • 做网站 赚广告费搜索引擎优化不包括
  • 做网管要维护网站临沂百度推广多少钱
  • 慈溪做网站的公司如何设计企业网站
  • 网站 源码 php买链接网站
  • 网站建设需准备什么自己做网站网页归档
  • 担路网口碑做网站好吗crm系统网站