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

关于自定义比较运算符

时间:2019-09-16 21:55:53      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:tor   amp   const   int   需要   定义   operator   ret   pre   

struct cmpa{
    bool operator ()(const int &i,const int &j){
        return a[i]<a[j];
    }
};

用priority_queue<int,vector,cmpa>q的方式定义比较函数时,比较方式要相反

也就是说如果希望从大到小排序需要写成<号

关于自定义比较运算符

标签:tor   amp   const   int   需要   定义   operator   ret   pre   

原文地址:https://www.cnblogs.com/White-star/p/11529890.html

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