328. Odd Even Linked List

  • Total Accepted: 57856
  • Total Submissions: 137040
  • Difficulty: Medium
  • Contributors: Admin

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:
Given 1->2->3->4->5->NULL,
return 1->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 ...

分析


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Solution {
public:
    ListNode* oddEvenList(ListNode* head) {
        if(head == NULL || head->next == NULL) return head;
         
        ListNode* l1 = head, * l2 = head->next, * h2 = head->next;
        ListNode* cur = l2->next;
        bool pos = false;
        while(cur){
            ListNode* & ref = !pos ? l1 : l2;
            ref->next = cur;
            ref = cur;
            cur = cur->next;
            pos = !pos;
        }
        l1->next = h2;
        l2->next = NULL;
        return head;
    }
};




posted @ 2017-02-20 16:18  copperface  阅读(130)  评论(0编辑  收藏  举报