2019-10-11 刷題總結(jié) -- sort

  1. sort list
    這道題實(shí)在是有點(diǎn)繁瑣矿卑,要求sort一個(gè)LinkedList,并且runtime是O(n lg n)沃饶,space complexity必須是constant母廷。從runtime來篩選的話,可以用merge sort和heap sort糊肤,但是heap sort必須是有index的情況才可以使用琴昆,因?yàn)閔eap sort必須通過index得到left right。因此馆揉,這里只能用mergesort业舍。但是考慮到space complexity的要求,無法使用一般的recursion形式的mergesort升酣,必須是in place舷暮。
    看了discussion的答案好久才想明白。
    還是用比較經(jīng)典的merge sort思路噩茄,只不過split這一步下面,是根據(jù)長(zhǎng)度截取兩段left和right,與此同時(shí)要記下下一次要開始截取的點(diǎn)绩聘。截取了left right之后將這兩段merge沥割。這里的變化因素就是截取的長(zhǎng)度,長(zhǎng)度每次翻倍凿菩,1机杜,2,4衅谷,椒拗。。会喝。
    每次長(zhǎng)度變化都從頭開始陡叠,重復(fù)一邊split和merge的過程玩郊。
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode sortList(ListNode head) {
        // cannot use heapsort because we cannot get the left and right by index
        // so consider about inplace mergesort
        
        // mergesort
        if (head == null || head.next == null) {
            return head;
        }
        // get the length of the linked list
        int len = 0;
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        while (head != null) {
            head = head.next;
            len++;
        }
        // split and merge here
        for (int i = 1; i < len; i <<= 1) {
            ListNode tail = dummy;
            ListNode cur = dummy.next;
            while (cur != null) {
                ListNode left = cur;
                ListNode right = split(left, i);
                cur = split(right, i);
                tail = merge(left, right, tail);
            }
        }
        return dummy.next;
    }
    // cut length of step of the LinkedList for head;
    // return the begining of this part, set the end of length n linkedlist null
    public ListNode split(ListNode head, int step) {
        if (head == null) {
            return null;
        }
        while (step > 1 && head.next != null) {
            head = head.next;
            step--;
        }
        ListNode res = head.next;
        head.next = null;
        return res;
    }
    // merge two split part, and then append to the tail
    // return the tail of merged linkedlist
    public ListNode merge(ListNode left, ListNode right, ListNode end) {
        ListNode tail = end;
        while (left != null && right != null) {
            if (left.val < right.val) {
                tail.next = left;
                left = left.next;
            } else {
                tail.next = right;
                right = right.next;
            }
            tail = tail.next;
        }
        if (left != null) {
            tail.next = left;
        }
        if (right != null) {
            tail.next = right;
        }
        while (tail.next != null) {
            tail = tail.next;
        }
        return tail;
    }
}
  1. Merge Two Sorted Lists
    這題太簡(jiǎn)單。枉阵。译红。必須一遍過

  2. Merge Intervals
    也不難。我寫了兩種解法兴溜,一種解法需要一個(gè)list作為過渡侦厚,另一種不需要。

// need another list
class Solution {
    public int[][] merge(int[][] intervals) {
        if (intervals.length <2) {
            return intervals;
        }
        Arrays.sort(intervals, (a,b)->(a[0]-b[0]));
        List<int[]> res = new ArrayList<>();
        int[] prev = intervals[0];
        for (int i = 1; i < intervals.length; i++) {
            if (intervals[i][0] > prev[1]) {
                res.add(prev);
                prev = intervals[i];
            } else {
                prev[1] = Math.max(prev[1], intervals[i][1]);
            }
        }
        res.add(prev);
        int[][] arr = new int[res.size()][2];
        arr = res.toArray(arr);
        return arr;
    }
}
// do not need another list
class Solution {
    public int[][] merge(int[][] intervals) {
        if (intervals.length <= 1) {
            return intervals;
        }
        Arrays.sort(intervals, (a,b)->(a[0]-b[0]));
        // two pointers, first point to the arranged
        int i = 0;
        for (int j = 1; j < intervals.length; j++) {
            if (intervals[i][1] < intervals[j][0]) {
                i++;
                intervals[i] = intervals[j];
            } else {
                intervals[i][1] = Math.max(intervals[i][1],intervals[j][1]);
            }
        }
        int[][] res = Arrays.copyOfRange(intervals, 0, i + 1);
        return res;
    }
}
  1. Insertion Sort List
    用insertion sort的方法sort一個(gè)linkedlist拙徽。因?yàn)閘inkedlist沒法往前刨沦,所以從最后開始sort。
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode insertionSortList(ListNode head) {
        if (head == null || head.next == null) {
            return head;
        }
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        int len = 0;
        while (head != null) {
            head = head.next;
            len++;
        }
        for (int i = len-1; i > 0; i--) {
            ListNode cur = forward(dummy, i);
            sort(cur);
        }
        return dummy.next;
    }
    public ListNode forward(ListNode head, int i) {
        while(i > 0) {
            head = head.next;
            i--;
        }
        return head;
    }
    public void sort(ListNode cur) {
        int val = cur.val;
        while (cur.next != null) {
            if (val > cur.next.val) {
                cur.val = cur.next.val;
                cur = cur.next;
            } else {
                break;
            }
        }
        cur.val = val;
    }
}

另一種方法就是還是按照原本的insertion sort的方法膘怕,只不過每次不是往前對(duì)比想诅,而是從頭開始對(duì)比。

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
class Solution {
    public ListNode insertionSortList(ListNode head) {
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        ListNode helper = dummy, cur = dummy; // cur.next is the node to be inserted
        ListNode pre = dummy; // insert between pre and pre.next;
        while (cur != null && cur.next != null) {
            int val = cur.next.val;
            while (pre.next.val < val) {
                pre = pre.next;
            } 
            if (pre != cur) {
                ListNode tmp = pre.next; // insert
                pre.next = new ListNode(val);
                pre.next.next = tmp;
                cur.next = cur.next.next;
            } else {
                cur = cur.next;
            }
            pre = dummy;
        }
        return dummy.next;
    }
    
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末岛心,一起剝皮案震驚了整個(gè)濱河市来破,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌忘古,老刑警劉巖徘禁,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異髓堪,居然都是意外死亡送朱,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門干旁,熙熙樓的掌柜王于貴愁眉苦臉地迎上來驶沼,“玉大人,你說我怎么就攤上這事疤孕∩毯酰” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵祭阀,是天一觀的道長(zhǎng)。 經(jīng)常有香客問我鲜戒,道長(zhǎng)专控,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任遏餐,我火速辦了婚禮伦腐,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘失都。我一直安慰自己柏蘑,他們只是感情好幸冻,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著咳焚,像睡著了一般洽损。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上革半,一...
    開封第一講書人閱讀 49,007評(píng)論 1 284
  • 那天碑定,我揣著相機(jī)與錄音,去河邊找鬼又官。 笑死延刘,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的六敬。 我是一名探鬼主播碘赖,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼外构!你這毒婦竟也來了崖疤?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬榮一對(duì)情侶失蹤典勇,失蹤者是張志新(化名)和其女友劉穎劫哼,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體割笙,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡权烧,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了伤溉。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片般码。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖乱顾,靈堂內(nèi)的尸體忽然破棺而出板祝,到底是詐尸還是另有隱情,我是刑警寧澤走净,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布券时,位于F島的核電站,受9級(jí)特大地震影響伏伯,放射性物質(zhì)發(fā)生泄漏橘洞。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一说搅、第九天 我趴在偏房一處隱蔽的房頂上張望炸枣。 院中可真熱鬧,春花似錦、人聲如沸适肠。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)侯养。三九已至敦跌,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間沸毁,已是汗流浹背峰髓。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來泰國(guó)打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留息尺,地道東北人携兵。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像搂誉,于是被迫代替她去往敵國(guó)和親徐紧。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • 參考:十大經(jīng)典排序算法 0炭懊、排序算法說明 0.1排序的定義 對(duì)一序列對(duì)象根據(jù)某個(gè)關(guān)鍵字進(jìn)行排序并级。 0.2 術(shù)語(yǔ)說明...
    誰(shuí)在烽煙彼岸閱讀 1,006評(píng)論 0 12
  • Java 容器 & 泛型:四、Colletions.sort 和 Arrays.sort 的算法 Writer:B...
    青城樓主閱讀 572評(píng)論 0 1
  • 排序算法說明 (1)排序的定義:對(duì)一序列對(duì)象根據(jù)某個(gè)關(guān)鍵字進(jìn)行排序侮腹; 輸入:n個(gè)數(shù):a1,a2,a3,…,an 輸...
    code武閱讀 651評(píng)論 0 0
  • 0嘲碧、算法概述 0.1 算法分類 十種常見排序算法可以分為兩大類: 非線性時(shí)間比較類排序:通過比較來決定元素間的相對(duì)...
    Demon_code閱讀 1,043評(píng)論 0 2
  • 上樓打水沒有戴眼鏡 窗外車燈路燈都化成朦朧的亮點(diǎn) 美極了 每次我想用相機(jī)拍這樣的照片,從沒成功 模糊的世界是給近視...
    嘻笑到日落閱讀 235評(píng)論 1 2