206. Reverse Linked List - Detailed Explanation
Problem Statement
Given the head of a singly linked list, reverse the list and return the reversed list.
In other words, you need to change the next pointers of all the nodes so that the list is reversed.
Example Inputs & Outputs
-
Example 1:
- Input:
head = [1, 2, 3, 4, 5]
- Output:
[5, 4, 3, 2, 1]
- Explanation:
The linked list is reversed so that the new head is the node with value 5, followed by nodes with values 4, 3, 2, and 1.
- Input:
-
Example 2:
- Input:
head = [1, 2]
- Output:
[2, 1]
- Explanation:
The two nodes swap positions.
- Input:
-
Example 3:
- Input:
head = []
- Output:
[]
- Explanation:
An empty list remains empty after reversal.
- Input:
Hints
-
Iterative Approach Using Pointers:
Think about maintaining two pointers—one for the previous node and one for the current node. As you traverse the list, you reverse the next pointer of the current node to point to the previous node. -
Recursive Approach:
The recursive solution involves reversing the rest of the list and then fixing the current node’s pointer.
Approaches
1. Iterative Approach
Idea:
- Initialize two pointers:
prev
(set toNone
) andcurr
(set to the head). - Traverse the list and for each node:
- Save the next node.
- Reverse the pointer of the current node to point to the previous node.
- Move the
prev
andcurr
pointers one step forward.
- Return
prev
as the new head whencurr
becomesNone
.
Steps:
- Set
prev = None
andcurr = head
. - While
curr
is notNone
:- Temporarily store
curr.next
. - Set
curr.next
toprev
(reverse the pointer). - Move
prev
tocurr
andcurr
to the stored next node.
- Temporarily store
- Return
prev
as the head of the reversed list.
2. Recursive Approach
Idea:
- The base case is when the list is empty or has one node.
- Recursively reverse the sublist starting from the second node.
- Adjust the pointers so that the next node points back to the current node, and then set the current node’s next to
None
.
Steps:
- If
head
isNone
orhead.next
isNone
, returnhead
. - Otherwise, recursively reverse the list from
head.next
onward. - Set
head.next.next
tohead
to reverse the link. - Set
head.next
toNone
to break the original link. - Return the new head from the recursive call.
Code Implementations
Python Code
Java Code
Complexity Analysis
-
Time Complexity:
- Both the iterative and recursive approaches traverse each node exactly once, so the time complexity is O(n), where n is the number of nodes in the list.
-
Space Complexity:
- Iterative Approach: Uses constant extra space, O(1).
- Recursive Approach: Uses O(n) space in the recursion stack.
Step-by-Step Walkthrough (Iterative Approach)
-
Initialization:
Setprev = None
andcurr = head
(the first node of the list). -
Iteration:
- While
curr
is not null:- Save
curr.next
in a temporary variable (next_temp
). - Change
curr.next
to point toprev
, effectively reversing the pointer. - Move
prev
tocurr
andcurr
tonext_temp
.
- Save
- While
-
Termination:
Whencurr
becomes null,prev
points to the new head of the reversed list. -
Return:
Returnprev
as the head of the reversed linked list.
Common Mistakes
-
Losing the Next Node:
Not savingcurr.next
before changingcurr.next
leads to losing access to the rest of the list. -
Incorrect Pointer Updates:
Updating pointers in the wrong order may result in a broken list or an infinite loop. -
Forgetting to Handle Empty Lists:
Ensure that the algorithm correctly returnsNone
or an empty list when the input is empty.
Edge Cases & Alternative Variations
-
Edge Cases:
- Empty List:
If the input list is empty, simply returnNone
. - Single Node:
A list with one node should remain unchanged after reversal.
- Empty List:
-
Alternative Variations:
- Partial Reversal:
Problems that require reversing only a portion of the list. - Reversing in Groups:
Reversing nodes in groups (e.g., reverse every k nodes).
- Partial Reversal:
Related Problems for Further Practice
- Reverse Nodes in k-Group:
Reverse nodes of a linked list in groups of size k. - Swap Nodes in Pairs:
Swap every two adjacent nodes in a linked list. - Linked List Cycle Detection:
Determine if a linked list has a cycle.
GET YOUR FREE
Coding Questions Catalog
