Mid/SeniorLinked List

Odd Even Linked List

Given the head of a singly linked list, group all the nodes with odd indices together followed by the nodes with even indices, and return the reordered list.

The first node is considered odd, and the second node is considered even, and so on.

The relative order inside both the even and odd groups should remain as it was in the input.

You must solve the problem in O(1) extra space complexity and O(n) time complexity.

Example 1
[1] -> [2] -> [3] -> [4] -> [5] -> null
---
[1] -> [3] -> [5] -> [2] -> [4] -> null
Inputhead = [1,2,3,4,5]
Output[1,3,5,2,4]
The nodes at odd positions are 1, 3, and 5, followed by the nodes at even positions 2 and 4.
Example 2
[2] -> [1] -> [3] -> [5] -> [6] -> [4] -> [7] -> null
---
[2] -> [3] -> [6] -> [7] -> [1] -> [5] -> [4] -> null
Inputhead = [2,1,3,5,6,4,7]
Output[2,3,6,7,1,5,4]
The nodes at odd positions are 2, 3, 6, and 7, followed by the nodes at even positions 1, 5, and 4.

Constraints

  • The number of nodes in the linked list is in the range [0, 10^4].
  • -10^6 <= Node.val <= 10^6

Asked at 12 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate