#142

Linked List Cycle II

Medium
Hash TableLinked ListTwo PointersHash MapTwo Pointers
LeetCode ↗

Approaches

Brute ForceOptimal
Complexity Comparison
Brute ForceOptimal Solution
Time
O(n²)
O(n)
Space
O(n)
O(1)
💡

Intuition

Time O(n)Space O(1)

The optimal solution uses Floyd's Tortoise and Hare algorithm, which involves two pointers moving at different speeds. This allows us to detect a cycle efficiently without extra space.

⚙️

Algorithm

4 steps
  1. 1Step 1: Initialize two pointers, slow and fast. Both start at the head of the linked list.
  2. 2Step 2: Move slow by one step and fast by two steps until they meet or fast reaches the end.
  3. 3Step 3: If they meet, it indicates a cycle. To find the start of the cycle, reset one pointer to head and move both pointers one step at a time until they meet again.
  4. 4Step 4: The meeting point is the start of the cycle.
solution.py20 lines
1# Full working Python code
2class ListNode:
3    def __init__(self, val=0, next=None):
4        self.val = val
5        self.next = next
6
7def detectCycle(head):
8    slow = fast = head
9    while fast and fast.next:
10        slow = slow.next
11        fast = fast.next.next
12        if slow == fast:
13            break
14    else:
15        return None
16    slow = head
17    while slow != fast:
18        slow = slow.next
19        fast = fast.next
20    return slow

Complexity note: The time complexity is O(n) because in the worst case, we traverse the list twice. The space complexity is O(1) since we only use two pointers.

  • 1Using a set to track visited nodes can be memory-intensive.
  • 2Floyd's Tortoise and Hare algorithm is efficient for cycle detection.

Solutions and explanations are original Tejav content. Problem titles © LeetCode — use the LeetCode button above for the full problem statement.