leetcode经典编程题(8)

第(8)题 reorder-list
知识点:链表
题述Given a singly linked list L: L0→L1→…→Ln-1→Ln,
reorder it to: L0→Ln→L1→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}.
题意就是将原序列中的后(n/2)项反转,再隔项差入到前(n/2)项的序列中。
思路:最直接的想法就是分别获取前,后(n/2)项,再将和一半反转,插入到前一半中。
如何反转?其实就是一个不断向链表头部添加结点的过程。
代码如下:

/**
 * Definition for singly-linked list.
 * class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) {
 *         val = x;
 *         next = null;
 *     }
 * }
 */
public class Solution {
    public void reorderList(ListNode head) {
        if(head == null){
            return;
        }

        int len = 0;
        ListNode next = head;
        while(next != null){
            next = next.next;
            len++;
        }
        if(len == 1 || len == 2 ){
            return;
        }

        int n = len%2 == 0 ? len/2 : len/2+1 ;
        next = head;
        for(int i = 1; i < n; i++){
            next = next.next;
        }
        ListNode temp = next.next;
        next.next = null;

        next = head;
        ListNode newHead = ref(temp);

        while(newHead != null){
            ListNode n1 = next.next;
            ListNode n2 = newHead.next;
            next.next = newHead;
            newHead.next = n1;
            next = n1;
            newHead = n2;
        }
    }

    public ListNode ref(ListNode head){
        if(head == null || head.next == null){
            return head;
        }
        ListNode next = head.next;
        head.next = null;
        while(next != null){
            ListNode temp = next.next;
            next.next = head;
            head = next;
            next = temp;
        }
        return head;
    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值