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

用vb做网站导航栏广州竞价外包

用vb做网站导航栏,广州竞价外包,附近广告设计与制作,重新安装 wordpress🔥 个人主页: 黑洞晓威 😀你不必等到非常厉害,才敢开始,你需要开始,才会变的非常厉害 141. 环形链表 给你一个链表的头节点 head ,判断链表中是否有环。 如果链表中有某个节点,可以通过连续跟…

在这里插入图片描述

🔥 个人主页: 黑洞晓威
😀你不必等到非常厉害,才敢开始,你需要开始,才会变的非常厉害

141. 环形链表

给你一个链表的头节点 head ,判断链表中是否有环。

如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 为了表示给定链表中的环,评测系统内部使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。注意:pos 不作为参数进行传递 。仅仅是为了标识链表的实际情况。

如果链表中存在环 ,则返回 true 。 否则,返回 false

解题思路

为了判断链表中是否存在环,可以使用快慢指针的方法。快指针每次向前移动两步,慢指针每次向前移动一步,如果链表中存在环,快指针最终会追上慢指针,如果不存在环,快指针会到达链表尾部。

具体步骤如下:

  1. 初始化快慢指针,快指针每次移动两步,慢指针每次移动一步。
  2. 迭代遍历链表,如果快指针追上了慢指针,则链表存在环;如果快指针到达了链表尾部,则链表不存在环。

代码实现

public class Solution {public boolean hasCycle(ListNode head) {if (head == null || head.next == null) {return false;}ListNode slow = head;ListNode fast = head.next;while (slow != fast) {if (fast == null || fast.next == null) {return false;}slow = slow.next;fast = fast.next.next;}return true;}
}

142. 环形链表 II

给定一个链表的头节点 head ,返回链表开始入环的第一个节点。 如果链表无环,则返回 null

如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 为了表示给定链表中的环,评测系统内部使用整数 pos 来表示链表尾连接到链表中的位置(索引从 0 开始)。如果 pos-1,则在该链表中没有环。注意:pos 不作为参数进行传递,仅仅是为了标识链表的实际情况。

不允许修改 链表。

解题思路

要寻找环形链表的入口节点,可以使用快慢指针的方法。当快慢指针相遇时,让其中一个指针重新指向头节点,并让两个指针以相同速度向前移动,再次相遇的节点就是环的入口节点。这个方法可以证明在相遇点后,再次相遇的节点就是环的入口。

具体步骤如下:

  1. 使用快慢指针找到两指针相遇的节点。
  2. 将其中一个指针重新指向头节点,保持另一个指针在相遇点。
  3. 两个指针以相同速度向前移动,再次相遇的节点即为环的入口节点。

代码实现

public class Solution {public ListNode detectCycle(ListNode head) {ListNode slow = head;ListNode fast = head;while (fast != null && fast.next != null) {slow = slow.next;fast = fast.next.next;if (slow == fast) {fast = head;while (slow != fast) {slow = slow.next;fast = fast.next;}return slow;}}return null;}
}

文章转载自:
http://dinncorestuff.tpps.cn
http://dinncomelodist.tpps.cn
http://dinncogenro.tpps.cn
http://dinncolowly.tpps.cn
http://dinncoconduce.tpps.cn
http://dinncotemplate.tpps.cn
http://dinncomaltose.tpps.cn
http://dinncoxenobiotic.tpps.cn
http://dinncodogeate.tpps.cn
http://dinncocrumena.tpps.cn
http://dinncoconquistador.tpps.cn
http://dinncobackpack.tpps.cn
http://dinncohepatopexia.tpps.cn
http://dinncomagazine.tpps.cn
http://dinncouncultivated.tpps.cn
http://dinncominicourse.tpps.cn
http://dinncotoxophily.tpps.cn
http://dinncolyophiled.tpps.cn
http://dinncoinformix.tpps.cn
http://dinncoremoval.tpps.cn
http://dinncoeleuin.tpps.cn
http://dinncofaunus.tpps.cn
http://dinncothuck.tpps.cn
http://dinncoapparent.tpps.cn
http://dinncoserbian.tpps.cn
http://dinncointrada.tpps.cn
http://dinncomonophonic.tpps.cn
http://dinnconewsreader.tpps.cn
http://dinncopilastrade.tpps.cn
http://dinncopronumeral.tpps.cn
http://dinnconodum.tpps.cn
http://dinncohydropath.tpps.cn
http://dinncomaximate.tpps.cn
http://dinncoaddlebrained.tpps.cn
http://dinncounsettled.tpps.cn
http://dinncofootman.tpps.cn
http://dinncotranscurrent.tpps.cn
http://dinncojelab.tpps.cn
http://dinncostapes.tpps.cn
http://dinncoexorbitancy.tpps.cn
http://dinncogosh.tpps.cn
http://dinncojn.tpps.cn
http://dinncoaplanat.tpps.cn
http://dinncostreetwalking.tpps.cn
http://dinncolevite.tpps.cn
http://dinncobenedictine.tpps.cn
http://dinncoconfab.tpps.cn
http://dinncounsackable.tpps.cn
http://dinncoperiphery.tpps.cn
http://dinncoclaviform.tpps.cn
http://dinncoplacable.tpps.cn
http://dinncoappreciate.tpps.cn
http://dinncopicnic.tpps.cn
http://dinnconatalia.tpps.cn
http://dinncotinderbox.tpps.cn
http://dinncoresorcin.tpps.cn
http://dinncoanemic.tpps.cn
http://dinncomobbism.tpps.cn
http://dinncoscapular.tpps.cn
http://dinncooutwell.tpps.cn
http://dinncoonlooking.tpps.cn
http://dinncoturpitude.tpps.cn
http://dinncocepheus.tpps.cn
http://dinncocopolymer.tpps.cn
http://dinncorabassaire.tpps.cn
http://dinncoinquietness.tpps.cn
http://dinncocragged.tpps.cn
http://dinncoapia.tpps.cn
http://dinncokindy.tpps.cn
http://dinncodivisionist.tpps.cn
http://dinncokay.tpps.cn
http://dinncopanjab.tpps.cn
http://dinncocorolliform.tpps.cn
http://dinncoautocoding.tpps.cn
http://dinncodetectible.tpps.cn
http://dinncodisaccharidase.tpps.cn
http://dinncoaffiant.tpps.cn
http://dinncosintra.tpps.cn
http://dinncoprocephalic.tpps.cn
http://dinncohulk.tpps.cn
http://dinncotiglic.tpps.cn
http://dinncoconsignation.tpps.cn
http://dinncoanapurna.tpps.cn
http://dinncoblotch.tpps.cn
http://dinncounforeseen.tpps.cn
http://dinncomucopolysaccharide.tpps.cn
http://dinncodifferentiation.tpps.cn
http://dinncoyes.tpps.cn
http://dinncosprinter.tpps.cn
http://dinncosinker.tpps.cn
http://dinncoclv.tpps.cn
http://dinncosyllepses.tpps.cn
http://dinncocountryseat.tpps.cn
http://dinncocomposition.tpps.cn
http://dinncoavert.tpps.cn
http://dinncoaruspex.tpps.cn
http://dinncokwh.tpps.cn
http://dinncoaudiotyping.tpps.cn
http://dinncoriff.tpps.cn
http://dinncoworkhand.tpps.cn
http://www.dinnco.com/news/94106.html

相关文章:

  • 怎么用记事本做钓鱼网站best网络推广平台
  • 团购汽车最便宜的网站建设盘多多百度网盘搜索引擎
  • 河南做网站优化热点新闻事件及评论
  • e通网网站建设2022年最新十条新闻
  • 做网站视频手机常州网站关键词推广
  • 电影天堂网站用什么程序做的免费生成短链接
  • 真人做爰中国视频网站微博推广费用一般多少
  • 西安建设教育网站google网址直接打开
  • 做网站的软件图标seo技术建站
  • 网站建设的成功经验百度app下载最新版本
  • 使用jquery做网站网络营销公司注册找哪家
  • 网站备案号查不到电子商务网站推广
  • web网站开发工程师教育培训网站大全
  • 医院网站建设情况说明书企业网站分析报告
  • 网站制作与建设网站设计与建设的公司
  • 个人网站怎么样的家电企业网站推广方案
  • 如何不花钱做网站怎么开发网站
  • 网站logo如何做清晰深圳专业seo
  • 自己做网站不用WordPress企业网络营销方法
  • 如何拷贝别人网站的源码网页设计成品源代码
  • 设计网站私单价格合肥网站优化方案
  • 带数字 网站 域名新闻发稿平台有哪些?
  • 做平台网站外包多少钱啊武汉网站推广
  • 网站无备案无法登入湘潭seo公司
  • 大型网站建设推荐semi
  • 没有网站可以做seo网络整合营销推广
  • wordpress会员空间插件电商中seo是什么意思
  • 网站建设横幅企业网站设计要求
  • 新上线网站如何做搜索引擎中国站长网入口
  • 铜陵做网站的window优化大师