摘要:鏈表題目的集合雙指針法找中點,分割,合并,翻轉,排序。主函數對于長度為或的鏈表,返回找到中點分割鏈表并翻轉后半段為與前半段合并。當移動到最后一個元素,正好移動到整個鏈表的頭部。
Problem
Given a singly linked list L: L0 → L1 → … → Ln-1 → Ln
reorder it to: L0 → Ln → L1 → Ln-1 → L2 → Ln-2 → …
ExampleGiven 1->2->3->4->null, reorder it to 1->4->2->3->null.
ChallengeCan 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.next為temp,令head指向pre,令pre等于head,再令temp為head。這樣翻轉就會令鏈表的首元素head移動到尾部,并讓pre移動到所有已翻轉結點的頭部。當head移動到最后一個元素null,pre正好移動到整個鏈表的頭部。返回pre,翻轉完畢。
合并merge():
建立新鏈表結點dummy,復制到新鏈表結點cur。用index判斷當前結點是奇數還是偶數。偶數則加入n1的結點,n1后移;否則加入n2的結點,n2后移。每加入一個結點后,cur后移。最后若n1或n2有剩余結點,則加入cur.next。返回dummy.next。
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
摘要:要找到后半部分的起點,就是用快慢指針。不過該題我們不能直接拿到中間,而是要拿到中間的前一個節點,這樣才能把第一個子鏈表的末尾置為空,這里的技巧就是快慢指針循環的條件是。注意因為不能有額外空間,我們最好用迭代的方法反轉鏈表。 Reorder List Given a singly linked list L: L0→L1→…→Ln-1→Ln, reorder it to: L0→Ln→...
摘要:插入排序維基百科一般來說,插入排序都采用在數組上實現。在放這個數之前,這個數的目標位置和原始位置之間的數都要先進行后移。最后,當,即遍歷完整個原鏈表之后,新鏈表排序完成。 Problem Sort a linked list using insertion sort. Example Given 1->3->2->0->null, return 0->1->2->3->null. No...
摘要:遞歸法復雜度時間空間思路當遞歸到鏈表尾部時返回,每次返回時長度加,一旦長度為時記錄下該節點。雙指針法復雜度時間空間思路用兩個指針,快指針先走步,然后快慢指針同時開始走,保持的距離,這樣當快指針到達末尾時,慢指針就是倒數第個。 Nth to Last Node in List Find the nth to last element of a singly linked list. ...
摘要:而后吾當依除取余之法,化大為小,則指針不致于越界也。后欲尋右起第結點,令快指針先行數日,及至兩指針相距為,便吟鞭東指,與慢指針策馬共進。快慢指針亦止于其所焉。舞動長劍,中宮直入,直取首級,而一掌劈空,已鴻飛冥冥。自此,一代天驕,霸業已成。 Problem Given a list, rotate the list to the right by k places, where k is...
摘要:新建兩個鏈表,分別存和的結點。令頭結點分別叫作和,對應的指針分別叫作和。然后遍歷,當小于的時候放入,否則放入。最后,讓較小值鏈表尾結點指向較大值鏈表頭結點,再讓較大值鏈表尾結點指向。 Problem Given a linked list and a value x, partition it such that all nodes less than x come before no...
閱讀 2493·2021-08-11 11:16
閱讀 2931·2019-08-30 15:55
閱讀 3335·2019-08-30 12:53
閱讀 1571·2019-08-29 13:28
閱讀 3269·2019-08-28 18:17
閱讀 940·2019-08-26 12:19
閱讀 2471·2019-08-23 18:27
閱讀 708·2019-08-23 18:17