码迷,mamicode.com
首页 > 其他好文 > 详细

143. Reorder List(List)

时间:2015-10-03 11:54:06      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:

Given a singly linked list L: L0L1→…→Ln-1Ln,
reorder it to: L0LnL1Ln-1L2Ln-2→…

You must do this in-place without altering the nodes‘ values.

For example,
Given {1,2,3,4}, reorder it to {1,4,2,3}.

class Solution {
public:
    void reorderList(ListNode *head) {
        if (!head|| !head->next)  
        return;  
  
        // partition the list into 2 sublists of equal length  
        ListNode *slowNode = head, *fastNode = head;  
        while (fastNode->next) {  
            fastNode = fastNode->next;  
            if (fastNode->next) {  
                fastNode = fastNode->next;  
            } else {  
                break;  
            }  
            slowNode = slowNode->next;  
        }  
        // 2 sublist heads  
        ListNode *head1 = head, *head2 = slowNode->next;  
        // detach the two sublists  
        slowNode->next = NULL;  
      
        // reverse the second sublist  
        ListNode *cur = head2, *post = cur->next;  
        cur->next = NULL;  
        while (post) {  
            ListNode* temp = post->next;  
            post->next = cur;  
            cur = post;  
            post = temp;  
        }  
        head2 = cur; // the new head of the reversed sublist  
      
        // merge the 2 sublists as required  
        ListNode* p = head1, *q = head2;  
        while (q ) {  
            ListNode *temp1 = p->next;  
            ListNode *temp2 = q->next;  
            p->next = q;  
            q->next = temp1;  
            p = temp1;  
            q = temp2;  
        }  
    }  
};

 

143. Reorder List(List)

标签:

原文地址:http://www.cnblogs.com/qionglouyuyu/p/4853185.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!