二元谓词— 谓词–>bool 二元----仿函数里面的参数个数
#include<iostream>
using namespace std;
#include<vector>
#include<algorithm>
//二元谓词--- 谓词-->bool 二元----仿函数里面的参数个数
class compare {
public:
bool operator()(int v1,int v2)
{
return v1 > v2;
}
};
void test()
{
//vector的排序也时sort排序算法
vector<int> v = { 2,1,5,3,8,7 };
sort(v.begin(), v.end());
for (int i = 0; i < v.size(); i++)
{
cout << v[i] << " ";
}
cout << "\n自定义排序--------------------" << endl;
//自定义排序
//匿名函数对象
sort(v.begin(), v.end(), compare());
for (int i = 0; i < v.size(); i++)
{
cout << v[i] << " ";
}
}
int main()
{
test();
system("pause");
return 0;
}
注意:
map<int, person,compare> m;
sort(v.begin(), v.end(), compare());
map是函数模板,传入的是类型,而在这里是函数,参数必须是对象
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有