模板 - 优先队列

Posted 朽木の半夏

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模板 - 优先队列相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
#include<algorithm>
#include<queue>
 
using namespace std;
 
struct node{
    int num;
    node(int i){
        num = i;
    }
};
 
priority_queue<node>key;
 
bool operator <(node a ,node b){
    return a.num<b.num;
}
 
 
int main(){
    key.push(node(1));
    key.push(node(4));
    printf("%d\n",key.top().num);
    key.pop();
    key.push(node(2));
    key.push(node(3));
    printf("%d\n",key.top().num);
}
 
 
 
=============================================================================
struct compare {
    bool operator()(const ListNode* l, const ListNode* r) {
        return l->val > r->val;
    }
};
ListNode *mergeKLists(vector<ListNode *> &lists) { //priority_queue
    priority_queue<ListNode *, vector<ListNode *>, compare> q;
    for(auto l : lists) {
        if(l)  q.push(l);
    }
    if(q.empty())  return NULL;

    ListNode* result = q.top();
    q.pop();
    if(result->next) q.push(result->next);
    ListNode* tail = result;           
    while(!q.empty()) {
        tail->next = q.top();
        q.pop();
        tail = tail->next;
        if(tail->next) q.push(tail->next);
    }
    return result;
}
 
 
 

以上是关于模板 - 优先队列的主要内容,如果未能解决你的问题,请参考以下文章

增加和减少优先级队列的模板函数

迪杰斯特拉_优先队列 模板

模板 - 优先队列

Dijkstra+优先队列 模板

手工 stack栈 queue队列 priority queue 优先队列 模板

优先队列优化dij算法通用模板