一_vector的自定义compare函数写法
注释::1.当返回值a<b时,默认为升序.当返回值a>b时,默认为降序
2.建议所有的返回类型都为static bool 类型,以避免出现不必要的bug!!!
3.建议在compare函数中形参加上const!!!
1.当函数写在类外时:
#include<algorithm>
#include<vector>
using namespace std;
static bool compare(const int a,const int b)
return a< b;
}
class Solution {
public:
void _Sort(vector<Interval>