首页 > 其他 > 详细

Reorder List

时间:2014-07-01 08:39:04      阅读:260      评论:0      收藏:0      [点我收藏+]

题目

Given a singly linked list LL0L1→…→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}.

方法

    public void reorderList(ListNode head) {
    	
    	if (!(head == null || head.next == null || head.next.next == null)) {
        	int len = 0;
        	ListNode cur = head;
        	while(cur != null) {
        		len++;
        		cur = cur.next;
        	}
        	//System.out.println("len:" + len);
        	int half = (len + 1) / 2;
        	cur = head;
        	ListNode second = head.next;
        	for (int i = 1; i < half; i++) {
        		cur = second;
        		second = second.next;
        	}
        	cur.next = null;
        	ListNode secondHead;
        	
        	cur = second.next;
        	secondHead = second;
        	secondHead.next = null;
        	while (cur != null) {
        		ListNode temp = cur;
        		cur = cur.next;
        		temp.next = secondHead;
        		secondHead = temp;
        		
        	}
        	
        	ListNode cur1 = head;
        	ListNode cur2 = secondHead;
        	while(cur2 != null) {
        		ListNode next1 = cur1.next;
        		ListNode next2 = cur2.next;
        		cur2.next = cur1.next;
        		cur1.next = cur2;
        		cur1 = next1;
        		cur2 = next2;
        	}
       	
    	}

    }


Reorder List,布布扣,bubuko.com

Reorder List

原文:http://blog.csdn.net/u010378705/article/details/36026617

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!