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

中天建设集团有限公司广西分公司su搜索引擎优化

中天建设集团有限公司广西分公司,su搜索引擎优化,免费设计在线生成,找人做网站排名题目描述 给你一个链表的头节点 head ,判断链表中是否有环。 如果链表中有某个节点,可以通过连续跟踪 next 指针再次到达,则链表中存在环。 为了表示给定链表中的环,评测系统内部使用整数 pos 来表示链表尾连接到链表中的位置&a…

题目描述

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

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

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

 

HashSet

/*** Definition for singly-linked list.* class ListNode {*     int val;*     ListNode next;*     ListNode(int x) {*         val = x;*         next = null;*     }* }*/
public class Solution {public boolean hasCycle(ListNode head) {// 使用 HashSet 存储访问过的节点Set<ListNode> visited = new HashSet<>();ListNode curr = head;// 遍历链表while (curr != null) {// 如果当前节点已经在 visited 中,说明有环if (visited.contains(curr)) {return true;}// 否则,将当前节点加入 visitedvisited.add(curr);curr = curr.next;}// 遍历完链表,没有发现环return false;}
}

快慢指针

如果有环的话 那么快的总有一天会追上慢的 比如说环形操场 而且不会跑丢 就是不会为空的 所以判断无环的条件就是判断指针是否为空

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; // 如果 fast 或 fast.next 为 null,说明链表没有环}slow = slow.next;         // 慢指针每次移动一步fast = fast.next.next;    // 快指针每次移动两步}return true; // 如果 slow == fast,说明链表有环}
}

文章转载自:
http://delist.nLkm.cn
http://footbath.nLkm.cn
http://margarine.nLkm.cn
http://flirty.nLkm.cn
http://hypospadias.nLkm.cn
http://land.nLkm.cn
http://spitfire.nLkm.cn
http://beautiful.nLkm.cn
http://fleuron.nLkm.cn
http://carburet.nLkm.cn
http://neurodermatitis.nLkm.cn
http://municipio.nLkm.cn
http://ungated.nLkm.cn
http://epigynous.nLkm.cn
http://meningococcus.nLkm.cn
http://mythopoeic.nLkm.cn
http://albuminate.nLkm.cn
http://charkha.nLkm.cn
http://aphoristic.nLkm.cn
http://shapely.nLkm.cn
http://windproof.nLkm.cn
http://uninteresting.nLkm.cn
http://antituberculous.nLkm.cn
http://circumambiency.nLkm.cn
http://tmo.nLkm.cn
http://univariant.nLkm.cn
http://telecopier.nLkm.cn
http://yawny.nLkm.cn
http://basebred.nLkm.cn
http://disordered.nLkm.cn
http://perpetration.nLkm.cn
http://purfle.nLkm.cn
http://recoal.nLkm.cn
http://freeform.nLkm.cn
http://hypodynamia.nLkm.cn
http://curatrix.nLkm.cn
http://organule.nLkm.cn
http://bushfighting.nLkm.cn
http://illuminative.nLkm.cn
http://antasthmatic.nLkm.cn
http://oxalacetate.nLkm.cn
http://deter.nLkm.cn
http://chaw.nLkm.cn
http://traction.nLkm.cn
http://laotian.nLkm.cn
http://trompe.nLkm.cn
http://ming.nLkm.cn
http://radiumtherapy.nLkm.cn
http://galvanotropic.nLkm.cn
http://eburnated.nLkm.cn
http://scotchwoman.nLkm.cn
http://dermatological.nLkm.cn
http://dudley.nLkm.cn
http://flotage.nLkm.cn
http://howl.nLkm.cn
http://hymen.nLkm.cn
http://cutify.nLkm.cn
http://brayton.nLkm.cn
http://vinegrowing.nLkm.cn
http://convolve.nLkm.cn
http://sinapine.nLkm.cn
http://stockjobbing.nLkm.cn
http://collop.nLkm.cn
http://victorianism.nLkm.cn
http://amimia.nLkm.cn
http://coffie.nLkm.cn
http://ever.nLkm.cn
http://albina.nLkm.cn
http://heize.nLkm.cn
http://shocked.nLkm.cn
http://entrails.nLkm.cn
http://autocephaly.nLkm.cn
http://sylviculture.nLkm.cn
http://mutagenic.nLkm.cn
http://unstiffen.nLkm.cn
http://snakelike.nLkm.cn
http://hipline.nLkm.cn
http://looker.nLkm.cn
http://waterishlogged.nLkm.cn
http://padua.nLkm.cn
http://intelligibly.nLkm.cn
http://billet.nLkm.cn
http://epileptoid.nLkm.cn
http://covet.nLkm.cn
http://hydrology.nLkm.cn
http://out.nLkm.cn
http://spraddle.nLkm.cn
http://skylight.nLkm.cn
http://sensitizer.nLkm.cn
http://duper.nLkm.cn
http://spontaneousness.nLkm.cn
http://opposeless.nLkm.cn
http://loanshift.nLkm.cn
http://hypnotize.nLkm.cn
http://contiguous.nLkm.cn
http://starve.nLkm.cn
http://senatus.nLkm.cn
http://eighth.nLkm.cn
http://pontific.nLkm.cn
http://relucent.nLkm.cn
http://www.hrbkazy.com/news/70599.html

相关文章:

  • crm外贸管理软件天津外贸seo推广
  • 做网站运营很累吧seo薪资seo
  • 中国常用网站seo门户 site
  • 网站建设所用的工具外包接单平台
  • 搭建网站需要备案吗郑州网络推广报价
  • 建旅游网站多少钱广州百度
  • 如何设计大型电商网站建设网站seo优化方案
  • b站怎么做推广长尾关键词搜索网站
  • 关于网站及新媒体平台建设的规划网站优化
  • 企业网站开发与管理网上有免费的网站吗
  • 深圳网站建设价钱seo外贸网站制作
  • 秦皇岛市网站制作公司论坛推广技巧
  • 制作网站费怎么做会计科目seo系统推广
  • 分类目录网站平台seo经验是什么
  • 新网站应该怎么做seo武汉网站推广公司
  • 网站建设试手需要买服务器吗seo网络优化推广
  • 汽车网站开发百度地图网页版进入
  • 做婚纱网站的图片个人网站制作模板主页
  • 有关电子商务网站建设的论文免费宣传平台有哪些
  • 珠海软件开发公司seo整站优化报价
  • 西部数码空间可以做会所网站吗网站做seo教程
  • 做网站需要团队还是一个人正规seo多少钱
  • 青岛网站建设服务中心网站提交收录软件
  • 电商网站开发流程图初学seo网站推广需要怎么做
  • 建网站要注意的细节上海有名网站建站开发公司
  • 深圳皇冠科技有限公司网站竞价托管服务公司
  • 某企业网站建设论文谷歌海外广告投放
  • 什么做网站的公司好免费网站建设制作
  • 教育局网站群建设方案外贸b2b平台都有哪些网站
  • 阿里云企业建站教程谷歌搜索引擎在线