关于自定义比较运算符
Posted white-star
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于自定义比较运算符相关的知识,希望对你有一定的参考价值。
struct cmpa
bool operator ()(const int &i,const int &j)
return a[i]<a[j];
;
用priority_queue<int,vector
也就是说如果希望从大到小排序需要写成<号
以上是关于关于自定义比较运算符的主要内容,如果未能解决你的问题,请参考以下文章