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

資訊專欄INFORMATION COLUMN

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

王軍 / 1795人閱讀

摘要:鏈表題目的集合雙指針法找中點(diǎn),分割,合并,翻轉(zhuǎn),排序。主函數(shù)對(duì)于長度為或的鏈表,返回找到中點(diǎn)分割鏈表并翻轉(zhuǎn)后半段為與前半段合并。當(dāng)移動(dòng)到最后一個(gè)元素,正好移動(dòng)到整個(gè)鏈表的頭部。

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

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

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

找中點(diǎn)findMid()
快慢指針,當(dāng)fast == null || fast.next == null時(shí),返回慢指針。

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

合并merge()
建立新鏈表結(jié)點(diǎn)dummy,復(fù)制到新鏈表結(jié)點(diǎn)cur。用index判斷當(dāng)前結(jié)點(diǎn)是奇數(shù)還是偶數(shù)。偶數(shù)則加入n1的結(jié)點(diǎn),n1后移;否則加入n2的結(jié)點(diǎn),n2后移。每加入一個(gè)結(jié)點(diǎn)后,cur后移。最后若n1n2有剩余結(jié)點(diǎn),則加入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;
    }
}

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/65828.html

相關(guān)文章

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

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

    hufeng 評(píng)論0 收藏0
  • [LintCode] Insertion Sort List

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

    wzyplus 評(píng)論0 收藏0
  • [Lintcode] Nth to Last Node in List 鏈表倒數(shù)第N個(gè)節(jié)點(diǎn)

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

    CoXie 評(píng)論0 收藏0
  • [LintCode/LeetCode] Rotate List

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

    Blackjun 評(píng)論0 收藏0
  • [LintCode/LeetCode] Partition List

    摘要:新建兩個(gè)鏈表,分別存和的結(jié)點(diǎn)。令頭結(jié)點(diǎn)分別叫作和,對(duì)應(yīng)的指針分別叫作和。然后遍歷,當(dāng)小于的時(shí)候放入,否則放入。最后,讓較小值鏈表尾結(jié)點(diǎn)指向較大值鏈表頭結(jié)點(diǎn),再讓較大值鏈表尾結(jié)點(diǎn)指向。 Problem Given a linked list and a value x, partition it such that all nodes less than x come before no...

    崔曉明 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<