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
Linked List Cycle Detection INPUT 3 idx 0 2 idx 1 0 idx 2 -4 idx 3 CYCLE head = [3, 2, 0, -4] pos = 1 (tail connects to idx 1) Tail's next points to node at index 1 (the node with value 2) ALGORITHM STEPS Floyd's Tortoise and Hare 1 Initialize Pointers slow = head, fast = head 2 Move Pointers slow: 1 step, fast: 2 steps 3 Check for Meeting If slow == fast, cycle exists 4 Check Termination If fast reaches null, no cycle Trace: Step 1: slow=3, fast=3 Step 2: slow=2, fast=0 Step 3: slow=0, fast=2 Step 4: slow=-4, fast=-4 MEET! FINAL RESULT Cycle Detected! true Slow and fast pointers met at node -4 Complexity Time: O(n) Space: O(1) Key Insight: Floyd's Cycle Detection uses two pointers moving at different speeds. If there's a cycle, the fast pointer will eventually catch up to the slow pointer from behind. If no cycle exists, the fast pointer will reach the end (null) first. This achieves O(1) space compared to O(n) for hash set approach. TutorialsPoint - Linked List Cycle | Optimal Solution (Floyd's Algorithm)
Asked in
Amazon 42 Microsoft 38 Apple 35 Google 31
321.1K Views
High Frequency
~15 min Avg. Time
8.9K Likes
Ln 1, Col 1
Smart Actions
💡 Explanation
AI Ready
💡 Suggestion Tab to accept Esc to dismiss
// Output will appear here after running code
Code Editor Closed
Click the red button to reopen