priority_quenue
Posted 变通无敌
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了priority_quenue相关的知识,希望对你有一定的参考价值。
转自:http://blog.csdn.net/xiaoquantouer/article/details/52015928
http://www.cnblogs.com/cielosun/p/5654595.html
1、头文件
#include<queue>
2、定义
- priority_queue<int> p;
3、优先输出大数据 虽然用的是less结构,然而,队列的出队顺序却是greater的先出!
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;
- }
输出:
4、优先输出小数据
方法一:
- priority_queue<int, vector<int>, greater<int> > p;
例如:
- #include<iostream>
- #include<queue>
- using namespace std;
- int main(){
- priority_queue<int, vector<int>, greater<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;
- }
输出:
方法二:自定义优先级,重载默认的 < 符号
例子:
- #include<iostream>
- #include<queue>
- #include<cstdlib>
- using namespace std;
- struct Node{
- int x,y;
- Node(int a=0, int b=0):
- x(a), y(b) {}
- };
- struct cmp{
- bool operator()(Node a, Node b){
- if(a.x == b.x) return a.y>b.y;
- return a.x>b.x;
- }
- };
- int main(){
- priority_queue<Node, vector<Node>, cmp>p;
- for(int i=0; i<10; ++i)
- p.push(Node(rand(), rand()));
- while(!p.empty()){
- cout<<p.top().x<<\' \'<<p.top().y<<endl;
- p.pop();
- }//while
- //getchar();
- return 0;
- }
输出:
以上是关于priority_quenue的主要内容,如果未能解决你的问题,请参考以下文章