Linked List Cycle - Problem
Given head, the head of a linked list, determine if the linked list has a cycle in it.
There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the next pointer. Internally, pos is used to denote the index of the node that tail's next pointer is connected to. Note that pos is not passed as a parameter.
Return true if there is a cycle in the linked list. Otherwise, return false.
Input & Output
Example 1 — Cycle Exists
$
Input:
head = [3,2,0,-4], pos = 1
›
Output:
true
💡 Note:
There is a cycle in the linked list, where the tail connects to the 1st node (0-indexed). The cycle is: 2 → 0 → -4 → back to 2.
Example 2 — Small Cycle
$
Input:
head = [1,2], pos = 0
›
Output:
true
💡 Note:
There is a cycle where the tail connects back to the 0th node. The cycle is: 1 → 2 → back to 1.
Example 3 — No Cycle
$
Input:
head = [1], pos = -1
›
Output:
false
💡 Note:
There is only one node and no cycle since pos = -1 indicates no connection back.
Constraints
- The number of nodes in the list is in the range [0, 104]
- -105 ≤ Node.val ≤ 105
- pos is -1 or a valid index in the linked-list
Visualization
Tap to expand
Understanding the Visualization
1
Input
Linked list that may or may not contain a cycle
2
Process
Use two pointers or hash set to detect revisited nodes
3
Output
Return true if cycle exists, false otherwise
Key Takeaway
🎯 Key Insight: Use two pointers at different speeds - if there's a cycle, the fast pointer will eventually meet the slow one
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code