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

143. Reorder List

时间:2016-09-14 07:10:44      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

Given a singly linked list LL0→L1→…→Ln-1→Ln,
reorder it to: L0→LnL1→Ln-1→L2→Ln-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}.

 

public void ReorderList(ListNode head) {
        if(head == null|| head.next == null) return;
        //find middle
        ListNode p1=head;
        ListNode p2=head;
        while(p2.next!=null&&p2.next.next!=null){ 
                p1=p1.next;
                p2=p2.next.next;
        }
        
        //reverse right half
        ListNode standMiddle = p1;
        p1 = p1.next;
        ListNode newHead = null;
        ListNode nextNode =null;
        while(p1 != null)
        {
            nextNode = p1.next;
            p1.next = newHead;
            newHead = p1; 
            p1 = nextNode;
        }
        standMiddle.next = newHead;
        
        //Start reorder one by one  1->2->3->6->5->4 to 1->6->2->5->3->4
        p1 = head;
        p2 = standMiddle.next;
        while(p1 !=standMiddle)
        {
            nextNode = p2.next;
            standMiddle.next = nextNode;
            p2.next = p1.next;
            p1.next = p2;
            p1 = p2.next;
            p2 = nextNode;
        }
    }

 

143. Reorder List

标签:

原文地址:http://www.cnblogs.com/renyualbert/p/5870467.html

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