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

【LeetCode】Reorder List

时间:2014-08-30 00:06:58      阅读:359      评论:0      收藏:0      [点我收藏+]

标签:leetcode   algorithm   java   链表   单向链表   

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

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */

【题意】

给定一个链表,把最后一个结点插入到第1个结点后,倒数第二个结点插入到第2个结点后,倒数第三个结点插入到第3个结点后,以此类推……

【思路】

由题意知,后面 (n-1)/2 个结点需要分别插入到前面 (n-1)/2 个结点后。

那么先把链表分为两段,前面 n-(n-1)/2 个结点为被插入链表,和后面 (n-1)/2 个结点为插入链表。

在插入之前,需先把插入链表逆序,即第n个结点->第n-1个结点->...

【Java代码】

public class Solution {
    public void reorderList(ListNode head) {
        ListNode node = head;
        int cnt = 0;
        while (node != null) {
            cnt++;
            node = node.next;
        }
        
        if (cnt < 3) return;//3个以下的结点不需要移动
        
        int k = (cnt - 1) / 2;//需要移动的后k个结点
        int i = 1;
        node = head;
        while (i++ < cnt - k) {
            node = node.next;
        }
        ListNode begin = node.next;//用begin表示需要移动的后k个结点的开始
        node.next = null;//把不需要移动的部分结尾设为null
        
        //把需要移动的k个结点逆序
        ListNode pre = begin;
        ListNode cur = begin.next;
        begin.next = null;
        while (cur != null) {
            ListNode next = cur.next;
            cur.next = pre;
            
            begin = cur;
            pre = cur;
            cur = next;
        }
        
        ListNode node1 = head;
        ListNode node2 = begin;
        while (node1 != null && node2 != null) {
            pre = node1;
            cur = node2;
            
            node1 = node1.next;//这两行一定要放在下面两行之前,因为pre和node1指向同一个结点,下面操作会改变node1的next;cur和node2同理
            node2 = node2.next;
            
            cur.next = pre.next;//这两行代码是把cur插入到pre后
            pre.next = cur;
        }
    }
}

【感受】

代码写起来超恶心,写着写着就混乱了,一会儿就不知道next指的是哪个结点了。


【LeetCode】Reorder List

标签:leetcode   algorithm   java   链表   单向链表   

原文地址:http://blog.csdn.net/ljiabin/article/details/38932711

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