Given a linked list, determine if it has a cycle in it.html
To represent a cycle in the given linked list, we use an integer pos
which represents the position (0-indexed) in the linked list where tail connects to. If pos
is -1
, then there is no cycle in the linked list.node
Example 1:git
Input: head = [3,2,0,-4], pos = 1 Output: true Explanation: There is a cycle in the linked list, where tail connects to the second node.
Example 2:github
Input: head = [1,2], pos = 0 Output: true Explanation: There is a cycle in the linked list, where tail connects to the first node.
Example 3:app
Input: head = [1], pos = -1 Output: false Explanation: There is no cycle in the linked list.
Follow up:post
Can you solve it using O(1) (i.e. constant) memory?url
這道題是快慢指針的經典應用。只須要設兩個指針,一個每次走一步的慢指針和一個每次走兩步的快指針,若是鏈表裏有環的話,兩個指針最終確定會相遇。實在是太巧妙了,要是我確定想不出來。代碼以下:spa
C++ 解法:指針
class Solution { public: bool hasCycle(ListNode *head) { ListNode *slow = head, *fast = head; while (fast && fast->next) { slow = slow->next; fast = fast->next->next; if (slow == fast) return true; } return false; } };
Java 解法:code
public class Solution { public boolean hasCycle(ListNode head) { ListNode slow = head, fast = head; while (fast != null && fast.next != null) { slow = slow.next; fast = fast.next.next; if (slow == fast) return true; } return false; } }
Github 同步地址:
https://github.com/grandyang/leetcode/issues/141
相似題目:
參考資料:
https://leetcode.com/problems/linked-list-cycle/
https://leetcode.com/problems/linked-list-cycle/discuss/44489/O(1)-Space-Solution