-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path05_内建函数对象_关系仿函数.cpp
56 lines (50 loc) · 1.1 KB
/
05_内建函数对象_关系仿函数.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#include <iostream>
#include <functional>
#include <vector>
#include <algorithm>
using namespace std;
// 关系仿函数
// 实现关系对比
/*
- template<class T> bool equal_to<T> // 等于
- template<class T> bool not_equal_to<T> // 不等于
- template<class T> bool greater<T> // 大于
- template<class T> bool greater_equal<T> // 大于等于
- template<class T> bool less<T> // 小于
- template<class T> bool less_equal<T> // 小于等于
*/
void printVector(vector<int> &v)
{
for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
{
cout << *it << " ";
}
cout << endl;
}
class MyCompare
{
public:
bool operator()(int v1, int v2)
{
return v1 > v2;
}
};
void test01()
{
vector<int> v;
v.push_back(30);
v.push_back(50);
v.push_back(20);
v.push_back(10);
v.push_back(40);
printVector(v);
// 实现降序排序
// sort(v.begin(), v.end(), MyCompare());
sort(v.begin(), v.end(), greater<int>()); // 等效于上一行
printVector(v);
}
int main()
{
test01();
return 0;
}