首页 > 编程语言 > 详细

【LeetCode-链表】合并K个排序链表

时间:2020-06-08 00:00:26      阅读:77      评论:0      收藏:0      [点我收藏+]

题目描述

合并 k 个排序链表,返回合并后的排序链表。请分析和描述算法的复杂度。
示例:

输入:
[
  1->4->5,
  1->3->4,
  2->6
]
输出: 1->1->2->3->4->4->5->6

题目链接: https://leetcode-cn.com/problems/merge-k-sorted-lists/

思路1

使用优先队列也就是小根堆来做。队列中的元素类型为pair<ListNode*>,这里需要自定义比较函数将 ListNode* 按值从小到大排在优先队列中,值小的在队头,值大的在队尾。首先将每个链表的链表头入队(如果不空的话)。然后弹出队头元素,将队头元素加入到新链表中,将队头元素的下一个元素加入到队列中(如果不为空)。这样循环,直到队列为空。代码如下:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
struct Compare{
    bool operator()(ListNode* p1, ListNode* p2){
        return p1->val > p2->val;
    }
};
class Solution {
public:
    ListNode* mergeKLists(vector<ListNode*>& lists) {
        if(lists.empty()) return nullptr;

        priority_queue<ListNode*, vector<ListNode*>, Compare> q;
        for(ListNode* list:lists){
            if(list!=nullptr) q.push(list);
        }

        ListNode* head = new ListNode(0);
        ListNode* curNode = head;
        while(!q.empty()){
            auto node = q.top(); q.pop();
            curNode->next = node; 
            curNode = curNode->next;
            if(node->next!=nullptr) q.push(node->next);
        }
        return head->next;
    }
};

这里需要注意比较函数的写法。

  • 时间复杂度:O(nk)
  • 空间复杂度:O(n)

思路2

使用合并两个有序链表中的方法逐个合并链表。代码如下:

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
struct Compare{
    bool operator()(ListNode* p1, ListNode* p2){
        return p1->val > p2->val;
    }
};
class Solution {
public:
    ListNode* mergeTwoLists(ListNode* l1, ListNode* l2) {  // 合并两个链表
        if(l1==nullptr) return l2;
        if(l2==nullptr) return l1;

        ListNode* head = new ListNode(0);
        ListNode* curNode = head;
        while(l1 && l2){
            if(l1->val < l2->val){
                curNode->next = l1;
                l1 = l1->next;
            }else{
                curNode->next = l2;
                l2 = l2->next;
            }
            curNode = curNode->next;
        }
        if(l1==nullptr) curNode->next = l2;
        if(l2==nullptr) curNode->next = l1;
        return head->next;
    }

    ListNode* mergeKLists(vector<ListNode*>& lists) {
        if(lists.empty()) return nullptr;

        ListNode* head = nullptr;
        for(auto list:lists){
            head = mergeTwoLists(head, list);
        }
        return head;
    }
};
  • 时间复杂度:O(nk)
  • 空间复杂度:O(1)

【LeetCode-链表】合并K个排序链表

原文:https://www.cnblogs.com/flix/p/13062514.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!