码迷,mamicode.com
首页 > 其他好文 > 详细

STL priority实例

时间:2017-05-19 23:59:20      阅读:433      评论:0      收藏:0      [点我收藏+]

标签:stl   return   top   names   str   function   turn   empty   space   

技术分享
 1 #include <iostream>
 2 #include <vector>
 3 #include <queue>
 4 #include <functional>
 5 #include <string>
 6 using namespace std;
 7 template <typename PriorityQueue>
 8 void dumpContents(const string & msg,PriorityQueue & pq)
 9 {
10     cout<<msg<<":"<<endl;
11     while(!pq.empty())
12     {
13         cout<<pq.top()<<endl;
14         pq.pop();
15     }
16 }
17 int main()
18 {
19     priority_queue<int> maxPQ;
20     priority_queue<int,vector<int>,greater<int> > minPQ;
21 
22     minPQ.push(4);
23     minPQ.push(3);
24     minPQ.push(5);
25     maxPQ.push(4);
26     maxPQ.push(3);
27     maxPQ.push(5);
28 
29     dumpContents("minPQ",minPQ);
30     dumpContents("maxPQ",maxPQ);
31 
32     return 0;
33 }
技术分享

STL priority实例

标签:stl   return   top   names   str   function   turn   empty   space   

原文地址:http://www.cnblogs.com/luozhijun/p/6880449.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!