-
Notifications
You must be signed in to change notification settings - Fork 2
/
23. Merge k Sorted Lists.cpp
48 lines (44 loc) · 1.68 KB
/
23. Merge k Sorted Lists.cpp
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
//https://leetcode.com/problems/merge-k-sorted-lists/
//最小堆 最大堆 sounds good
class Solution {
private:
class Comp{
public:
bool operator()(const ListNode *l1,ListNode *l2){
return l1->val>l2->val;
}
};
public:
ListNode *mergeKLists(vector<ListNode *> &lists) {
if(lists.empty())
return NULL;
ListNode *dummy=new ListNode(0),*tail=dummy;
priority_queue<ListNode *,vector<ListNode *>,Comp>pq;
for(int i=0;i<lists.size();i++){
if(lists[i])
pq.push(lists[i]);
}
while(!pq.empty()){
ListNode *tmp=pq.top();pq.pop();
if(tmp->next)
pq.push(tmp->next);
tail->next=tmp;
tail=tail->next;
}
//pq优先队列里面已经是最大堆,每一个链表的第一个数都是按照最大的顺序排列。
//有关最大堆最小堆还需要努力加油,不过本题是解决优先队列的一个方法
//上面那个是按照往大的顺序排列的,最后面的越大
ListNode *head=dummy->next;
delete dummy;
return head;
}
};
// 要抽时间学习STL基本知识
//不会啊,堆排序吧
// operator 里面不需要使用 &, 再次强调一下,operator 里面不需要使用 &
/*
priority_queue<ListNode *,vector<ListNode *>,Comp>pq; ---- bool operator()(const ListNode i1, const ListNode *i2)
这里面一定要统一 ,因为优先队列就是按照指针来的
*/
// priority_queue<ListNode *,vector<ListNode *>,Comp>pq;
// 优先队列里面就已经是指针了,所以operator里面也必须是指针