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

queue/priority_queue笔记

时间:2014-11-07 00:55:54      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:blog   io   ar   sp   文件   div   on   log   bs   

需要头文件#include <queue>

 

queue<int> q;

q.push(12);

while(!q.empty() )

{

cout << q.front() <<endl;

q.pop();

}

 

priority_queue <int>  q;   //默认按照从大到小排序

q.push(1);

q.push(2);

while(!q.empty() )

{

cout <<q.top() <<endl;

q.pop();

}

 

 

priority_queue<int, vector<int> , greater<int> > q; //按照从小到大的顺序

q.push (23);

q.push(22);

q.push (2);

while(!q.empty() )

{

cout << q.top() << endl;

q.pop();

}

 

对于自定义的对象,需要自己实现比较操作

 

struct Score
{
    int score_;
    string name_;

    Score(int score, const string name)
        :score_(score), name_(name)
    { }
};


class Cmp
{
    public:
        bool operator() (const Score &s1, const Score &s2)
        {
            return s1.score_ < s2.score_;
        }
};

// Cmp p;
// p(s1, s2)


int main(int argc, const char *argv[])
{
    priority_queue<Score, vector<Score>, Cmp> q;
    
    q.push(Score(67, "zhangsan"));
    q.push(Score(88, "lisi"));
    q.push(Score(34, "wangwu"));
}

 

queue/priority_queue笔记

标签:blog   io   ar   sp   文件   div   on   log   bs   

原文地址:http://www.cnblogs.com/hzqin/p/4080281.html

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