-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path23. Merge k Sorted Lists_PriorityQueue.cc
50 lines (44 loc) · 1.19 KB
/
23. Merge k Sorted Lists_PriorityQueue.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Using priority_queue approach
// O(nlogk)
// O(n)
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode* mergeKLists(vector<ListNode*>& lists) {
if (lists.empty())
return nullptr;
auto comp = [&](ListNode* a, ListNode* b) {
return a->val > b->val;
};
priority_queue<ListNode*, vector<ListNode*>, decltype(comp)> pq(comp);
int n = lists.size();
for (int i = 0; i < n; i++) {
if (lists[i]) {
pq.push(lists[i]);
}
}
ListNode dummyNode(0);
ListNode* tail = &dummyNode;
while (!pq.empty()) {
auto temp = pq.top();
pq.pop();
tail->next = temp;
tail = tail->next;
if (temp->next)
{
pq.push(temp->next);
}
}
tail->next = NULL;
return dummyNode.next;
}
};