关于lower_bound的优先级重载
Posted newera
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于lower_bound的优先级重载相关的知识,希望对你有一定的参考价值。
今天才知道$lower\_bound$最后有一个优先级参数……
首先$lower\_bound$中的优先级和序列优先级必须相同才有效
$lower\_bound$中优先级默认的是小于号,也就是说仅当序列从小到大排序时才有效
可以选择重载小括号/小于号,或者直接写$bool$函数
bool cmp (int a,int b) {return a>b;}
struct cmp { bool operator () (int a,int b) {return a>b;} };
如果是结构体写法调用时要记得加括号
以上是关于关于lower_bound的优先级重载的主要内容,如果未能解决你的问题,请参考以下文章
关于set的lower_bound 和 std的lower_bound