合并 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/
使用优先队列也就是小根堆来做。队列中的元素类型为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;
}
};
这里需要注意比较函数的写法。
使用合并两个有序链表中的方法逐个合并链表。代码如下:
/**
* 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;
}
};
原文:https://www.cnblogs.com/flix/p/13062514.html