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

Reorder List

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

标签:java   leetcode   

题目

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

标签:java   leetcode   

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

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