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

priority_queue 优先队列

时间:2019-01-25 17:39:04      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:get   blank   用法   就是   tps   gre   log   类的使用   class   

c++优先队列(priority_queue)用法详解

//升序队列
priority_queue <int,vector<int>,greater<int> > q;
//降序队列
priority_queue <int,vector<int>,less<int> >q;

//greater和less是std实现的两个仿函数(就是使一个类的使用看上去像一个函数。其实现就是类中实现一个operator(),这个类就有了类似函数的行为,就是一个仿函数类了)

  

priority_queue 优先队列

标签:get   blank   用法   就是   tps   gre   log   类的使用   class   

原文地址:https://www.cnblogs.com/liuyongliu/p/10320422.html

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