[leetcode]141. Linked List Cycle判断链表是否有环
Posted 程序媛詹妮弗
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[leetcode]141. 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?
题意:
给定一个链表,判断是否循环
思路:
快慢指针
若有环,则快慢指针一定会在某个节点相遇(此处省略证明)
代码:
1 public class Solution { 2 public boolean hasCycle(ListNode head) { 3 ListNode fast = head; 4 ListNode slow = head; 5 while(fast != null && fast.next != null){ 6 fast = fast.next.next; 7 slow = slow.next; 8 if(fast == slow) return true; 9 } 10 return false; 11 } 12 }
二刷
思路
If there is no cycle, the fast pointer will stop at the end of the linked list.
If there is a cycle, the fast pointer will eventually meet with the slow pointer.
For each iteration, the fast pointer will move one extra step. If the length of the cycle is M, after M iterations, the fast pointer will definitely move one more cycle and catch up with the slow pointer.
public class Solution { public boolean hasCycle(ListNode head) { // corner case if(head == null) return false; ListNode fast = head; ListNode slow = head; while(fast.next!= null){ /*此处遗漏了fast!=null导致报错*/ fast = fast.next.next; slow = slow.next; if(slow == fast){ return true; } } return false; } }
这个test case表明了fast在为null的时候,就禁止进入while循环内部了,否则会导致fast.next.next没有指向。
以上是关于[leetcode]141. Linked List Cycle判断链表是否有环的主要内容,如果未能解决你的问题,请参考以下文章
leetcode-141. Linked List Cycle
leetcode 141. Linked List Cycle
LeetCode 141. Linked List Cycle
LeetCode 141 Linked List Cycle