首页 > 代码库 > 【Leetcode】Linked List Cycle
【Leetcode】Linked List Cycle
一、原题
Linked List Cycle
Given a linked list, determine if it has a cycle in it.
Follow up:
Can you solve it without using extra space?
二、分析
选用两个指针扫描链表,一个速度快,一个速度慢,若两个指针相遇,说明有环。
三、代码(java)
/** * 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) { boolean result=false; if(head==null||head.next==null){} else{ ListNode fast,slow; slow=head; fast=head; while(fast!=null) { if(fast.next==null||fast==null) break; else{ fast=fast.next.next; slow=slow.next; } if(fast==slow){ result=true; break; } } } return result; } }
四
关于快慢指针相遇表明链表有环的证明:
http://umairsaeed.com/2011/06/23/finding-the-start-of-a-loop-in-a-circular-linked-list/。
比较直观的解释,如果两个点在一个圆上跑,方向相同,只要速度不一样就一定会相遇,在直线上则不一定。
【Leetcode】Linked List Cycle
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。