LeetCode:Odd Even Linked List

Problem:

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 ...

Credits:
Special thanks to @aadarshjajodia for adding this problem and creating all test cases.

Subscribe to see which companies asked this question

 
 
 1 class Solution {
 2 public:
 3     ListNode* oddEvenList(ListNode* head) {
 4         ListNode dummy1(-1);
 5         ListNode dummy2(-1);
 6         ListNode *evenhead=&dummy1;
 7         ListNode *even=evenhead;
 8         ListNode *oddhead=&dummy2;
 9         ListNode *odd=oddhead;
10         
11         int i=0;
12         while(head!=NULL)
13         {   
14             i++;
15             if(i%2==0)
16             {
17                even->next=head;
18                even=even->next;
19             }
20             else
21             {
22                odd->next=head;
23                odd=odd->next;
24             }
25             head=head->next;
26         }
27         even->next=NULL;
28         odd->next=evenhead->next;
29         return oddhead->next;
30         
31     }
32 };

 

posted @ 2016-01-18 21:00  尾巴草  阅读(160)  评论(0编辑  收藏  举报