国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

[LintCode] Reorder List [鏈表綜合題型]

王軍 / 1791人閱讀

摘要:鏈表題目的集合雙指針法找中點,分割,合并,翻轉,排序。主函數對于長度為或的鏈表,返回找到中點分割鏈表并翻轉后半段為與前半段合并。當移動到最后一個元素,正好移動到整個鏈表的頭部。

Problem

Given a singly linked list L: L0 → L1 → … → Ln-1 → Ln

reorder it to: L0 → Ln → L1 → Ln-1 → L2 → Ln-2 → …

Example

Given 1->2->3->4->null, reorder it to 1->4->2->3->null.

Challenge

Can you do this in-place without altering the nodes" values?

Note

鏈表題目的集合:雙指針法找中點,分割,合并,翻轉,排序。哈,都在這一題里面了。

主函數reorderList()
對于長度為0或1的鏈表,返回;找到中點mid;分割鏈表并翻轉后半段為tail;與前半段head合并。

找中點findMid()
快慢指針,當fast == null || fast.next == null時,返回慢指針。

翻轉reverse()
建立空鏈表結點pre,先存head.nexttemp,令head指向pre,令pre等于head,再令temphead。這樣翻轉就會令鏈表的首元素head移動到尾部,并讓pre移動到所有已翻轉結點的頭部。當head移動到最后一個元素nullpre正好移動到整個鏈表的頭部。返回pre,翻轉完畢。

合并merge()
建立新鏈表結點dummy,復制到新鏈表結點cur。用index判斷當前結點是奇數還是偶數。偶數則加入n1的結點,n1后移;否則加入n2的結點,n2后移。每加入一個結點后,cur后移。最后若n1n2有剩余結點,則加入cur.next。返回dummy.next

Solution
public class Solution {
    public void reorderList(ListNode head) {  
        if (head == null || head.next == null) return;
        ListNode mid = findMid(head);
        ListNode tail = reverse(mid.next);
        mid.next = null;
        merge(head, tail);
    }
    public ListNode findMid(ListNode head) {
        ListNode slow = head, fast = head.next;
        while (fast != null && fast.next != null) {
            fast = fast.next.next;
            slow = slow.next;
        }
        return slow;
    }
    public ListNode reverse(ListNode head) {
        ListNode pre = null;
        while (head != null) {
            ListNode temp = head.next;
            head.next = pre;
            pre = head;
            head = temp;
        }
        return pre;
    }
    public ListNode merge(ListNode n1, ListNode n2) {
        int index = 0;
        ListNode dummy = new ListNode(0);
        ListNode cur = dummy;
        while (n1 != null && n2 != null) {
            if (index % 2 == 0) {
                cur.next = n1;
                n1 = n1.next;
            } 
            else {
                cur.next = n2;
                n2 = n2.next;
            }
            index++;
            cur = cur.next;
        }
        if (n1 != null) cur.next = n1;
        else cur.next = n2;
        return dummy.next;
    }
}

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/65828.html

相關文章

  • [Leetcode] Reorder List 鏈表重新排序

    摘要:要找到后半部分的起點,就是用快慢指針。不過該題我們不能直接拿到中間,而是要拿到中間的前一個節點,這樣才能把第一個子鏈表的末尾置為空,這里的技巧就是快慢指針循環的條件是。注意因為不能有額外空間,我們最好用迭代的方法反轉鏈表。 Reorder List Given a singly linked list L: L0→L1→…→Ln-1→Ln, reorder it to: L0→Ln→...

    hufeng 評論0 收藏0
  • [LintCode] Insertion Sort List

    摘要:插入排序維基百科一般來說,插入排序都采用在數組上實現。在放這個數之前,這個數的目標位置和原始位置之間的數都要先進行后移。最后,當,即遍歷完整個原鏈表之后,新鏈表排序完成。 Problem Sort a linked list using insertion sort. Example Given 1->3->2->0->null, return 0->1->2->3->null. No...

    wzyplus 評論0 收藏0
  • [Lintcode] Nth to Last Node in List 鏈表倒數第N個節點

    摘要:遞歸法復雜度時間空間思路當遞歸到鏈表尾部時返回,每次返回時長度加,一旦長度為時記錄下該節點。雙指針法復雜度時間空間思路用兩個指針,快指針先走步,然后快慢指針同時開始走,保持的距離,這樣當快指針到達末尾時,慢指針就是倒數第個。 Nth to Last Node in List Find the nth to last element of a singly linked list. ...

    CoXie 評論0 收藏0
  • [LintCode/LeetCode] Rotate List

    摘要:而后吾當依除取余之法,化大為小,則指針不致于越界也。后欲尋右起第結點,令快指針先行數日,及至兩指針相距為,便吟鞭東指,與慢指針策馬共進。快慢指針亦止于其所焉。舞動長劍,中宮直入,直取首級,而一掌劈空,已鴻飛冥冥。自此,一代天驕,霸業已成。 Problem Given a list, rotate the list to the right by k places, where k is...

    Blackjun 評論0 收藏0
  • [LintCode/LeetCode] Partition List

    摘要:新建兩個鏈表,分別存和的結點。令頭結點分別叫作和,對應的指針分別叫作和。然后遍歷,當小于的時候放入,否則放入。最后,讓較小值鏈表尾結點指向較大值鏈表頭結點,再讓較大值鏈表尾結點指向。 Problem Given a linked list and a value x, partition it such that all nodes less than x come before no...

    崔曉明 評論0 收藏0

發表評論

0條評論

王軍

|高級講師

TA的文章

閱讀更多
最新活動
閱讀需要支付1元查看
<