中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

leetcode23. 合并K個排序鏈表

發布時間:2020-08-08 09:31:35 來源:ITPUB博客 閱讀:108 作者:orastar 欄目:編程語言

1. 題目描述

合并 k 個排序鏈表,返回合并后的排序鏈表。請分析和描述算法的復雜度。
示例:
輸入:
[
  1->4->5,
  1->3->4,
  2->6
]
輸出: 1->1->2->3->4->4->5->6
來源:力扣(LeetCode)
鏈接:https://leetcode-cn.com/problems/merge-k-sorted-lists

2. 解題思路

/*
解題思路:
解法一、順序合并
1、lists[0]與lists[1]合并,結果與lists[2]合并...結果與lists[listsSize-1]合并
解法二、分治合并
1、lists[0]與lists[1]合并,lists[2]與lists[3]合并,然后將合并的結果繼續合并。
*/

3. 測試結果

解法一、順序合并
leetcode23. 合并K個排序鏈表
解法二、分治合并
leetcode23. 合并K個排序鏈表

4. 順序合并

/*
title: leetcode23. 合并K個排序鏈表
author: xidoublestar
method: 順序合并
type: C
date: 2020-5-27
*/
struct ListNode* mergeTwoLists(struct ListNode* l1, struct ListNode* l2) {
    if (!l1)
        return l2;
    if (!l2)
        return l1;
    struct ListNode* head = (struct ListNode*)malloc(sizeof(struct ListNode)), * tail = head;
    while (l1 && l2) {
        if (l1->val < l2->val) {
            tail->next = l1;
            l1 = l1->next;
        }
        else {
            tail->next = l2;
            l2 = l2->next;
        }
        tail = tail->next;
    }
    if (l1) tail->next = l1;
    else if (l2) tail->next = l2;
    tail = head;
    head = head->next;
    free(tail);
    return head;
}
struct ListNode* mergeKLists(struct ListNode** lists, int listsSize) {
    if (listsSize == 0)
        return NULL;
    struct ListNode* res = *lists;
    for (int i = 1; i < listsSize; i++)
    {
        if(lists[i] != NULL)
            res = mergeTwoLists(res, lists[i]);
    }
    return res;
}

5. 分治合并

/*
title: leetcode23. 合并K個排序鏈表
author: xidoublestar
method: 順序合并
type: C
date: 2020-5-27
*/
struct ListNode* mergeTwoLists(struct ListNode* l1, struct ListNode* l2) {
    if ((!l1) || (!l2)) return l1 ? l1 : l2;
    struct ListNode head;
    head.next = NULL;
    struct ListNode* tail = &head;
    while (l1 && l2) {
        if (l1->val < l2->val) {
            tail->next = l1;
            l1 = l1->next;
        }
        else {
            tail->next = l2;
            l2 = l2->next;
        }
        tail = tail->next;
    }
    tail->next = l1 ? l1 : l2;
    return head.next;
}
struct ListNode* merge(struct ListNode** lists, int left, int right) {
    if (left == right)
        return lists[left];
    if (left > right)
        return NULL;
    int mid = (left + right) >> 1;
    struct ListNode* p1 = merge(lists, left, mid);
    struct ListNode* p2 = merge(lists, mid + 1, right);
    return mergeTwoLists(p1, p2);
}
struct ListNode* mergeKLists(struct ListNode** lists, int listsSize) {
    if (listsSize == 0)
        return NULL;
    return merge(lists, 0, listsSize - 1);
}

6. 復雜度分析

解法一、順序合并
時間復雜度:O(n*n)
空間復雜度:O(1)
解法二、分治合并
時間復雜度:O(nlogn)
空間復雜度:O(1)

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿克陶县| 新郑市| 曲麻莱县| 林甸县| 兴城市| 深圳市| 罗江县| 黄大仙区| 泸溪县| 三门县| 陵川县| 通许县| 云南省| 深水埗区| 扶风县| 芮城县| 永吉县| 丹阳市| 阳江市| 北流市| 丽水市| 宾阳县| 凭祥市| 布拖县| 沽源县| 长乐市| 清新县| 班玛县| 涞水县| 玉山县| 舞阳县| 大安市| 台中市| 襄垣县| 万宁市| 北安市| 富民县| 高台县| 历史| 温泉县| 黄骅市|