leetcode23. 合并K个排序链表

发布时间:2020-08-08 09:31:35 作者:orastar
来源:ITPUB博客 阅读:107

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)

推荐阅读:
  1. 数据工作本质:从业务中来,到业务中去
  2. java.lang.ClassNotFoundException解决办法

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

leetcode23. 合并 排序

上一篇:智慧园区系统开发解决方案,园区集成平台搭建

下一篇:Linux下JDK安装与卸载

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》