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

优先队列及改变优先级

时间:2019-09-02 23:29:34      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:str   bsp   priority   默认   amp   vector   struct   nod   gre   

priority_queue<int>que//默认最大的先出来 
priority_queue<int,vector<int>,greater<int> >que;///最小的先出来 
struct node{
    int x,y;
    bool operator < (const node &b)const{
        return x<b.x;///大的先出来 
    }
}x1,x2,x3;

 

优先队列及改变优先级

标签:str   bsp   priority   默认   amp   vector   struct   nod   gre   

原文地址:https://www.cnblogs.com/starve/p/11450456.html

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