STL -最大最小堆 priority_queue
Posted fish in the sea
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了STL -最大最小堆 priority_queue相关的知识,希望对你有一定的参考价值。
//添加头文件
#include<queue> using namespace std;
最大堆实现:
优先输出大数据
priority_queue<Type, Container, Functional>
Type为数据类型, Container为保存数据的容器,Functional为元素比较方式。
如果不写后两个参数,那么容器默认用的是vector,比较方式默认用operator<,也就是优先队列是大顶堆,队头元素最大。
#include<iostream> #include<queue> using namespace std; int main(){ priority_queue<int> p; p.push(1); p.push(2); p.push(8); p.push(5); p.push(43); for(int i=0;i<5;i++){ cout<<p.top()<<endl; p.pop(); } return 0; }
最小堆实现:
class CMyPair :public CVertex { public : CMyPair(CVertex *a, CVertex *b) { m_pair_a = a; m_pair_b = b; cost = 0; } ~CMyPair() {}; double getCost() { return cost; } void setCost(double c) { cost = c; } protected: CVertex * m_pair_a; CVertex * m_pair_b; double cost; }; struct cmp { bool operator()(CMyPair a, CMyPair b) { if (a.getCost()== b.getCost()) return a.getCost()>b.getCost(); return a.getCost()>b.getCost(); } };
priority_queue<CMyPair, vector<CMyPair>,cmp> heap;
常用函数:
heap.empty();
heap.push();
heap.pop();
heap.top();
以上是关于STL -最大最小堆 priority_queue的主要内容,如果未能解决你的问题,请参考以下文章