Question
You are given the head of a singly linked-list. The list can be represented as:
L0 β L1 β β¦ β Ln - 1 β Ln
Reorder the list to be on the following form:
L0 β Ln β L1 β Ln - 1 β L2 β Ln - 2 β β¦
You may not modify the values in the listβs nodes. Only nodes themselves may be changed.
This is a linked_list question.
Idea
- Use a fast and slow pointer to find the second half of the list
- Reverse the second half of the list
- While second list still has nodes (of equal or greater lengths than the first list)
- Temporarily store the next nodes of both lists
- Set the next node of the first list to the head of the second list
- Set the next node of the second list to the temp variable that held the next node of the first list (this is kind of like a weaving pattern)
- Set first list and second list to their temp variables, effectively moving the heads one node down the list