328 Odd Even Linked List

1. Question

Given a singly linked list, group all odd nodes together followed by the even nodes. Please note here we are talking about the node number and not the value in the nodes.

You should try to do it in place. The program should run in O(1) space complexity and O(nodes) time complexity.

Example: Given1->2->3->4->5->NULL, return1->3->5->2->4->NULL.

Note: The relative order inside both the even and odd groups should remain as it was in the input. The first node is considered odd, the second node even and so on ...

2. Implementation

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode oddEvenList(ListNode head) {
        if (head == null || head.next == null) {
            return head;
        }

        ListNode oddHead = new ListNode(0);
        ListNode evenHead = new ListNode(0);
        ListNode p1 = oddHead;
        ListNode p2 = evenHead;

        ListNode curNode = head;
        int count = 1;

        while (curNode != null) {
            if (count % 2 != 0) {
                p1.next = curNode;
                p1 = p1.next;
            }
            else {
                p2.next = curNode;
                p2 = p2.next;
            }
            ++count;
            curNode = curNode.next;
        }
        p2.next = null;
        p1.next = evenHead.next;
        return oddHead.next;
    }
}

3. Time & Space Complexity

时间复杂度O(n), 空间复杂度O(1)

Last updated