sort函数自定义compare方法
Posted 笨鸟居士的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sort函数自定义compare方法相关的知识,希望对你有一定的参考价值。
今天看到有C++这样写:
sort(ins.begin(), ins.end(), [](Interval a, Interval b){return a.start < b.start;});
觉得好牛逼啊。
一般是这么写的。
bool xxx(const A& a, const A& b) {return a.xxx < b.xxx;}
不知道上面那个居然可以,很可能是C++11里面的写法吧。
以上是关于sort函数自定义compare方法的主要内容,如果未能解决你的问题,请参考以下文章
java.ArrayList集合调用并重写sort方法,使用时报错