C++关系仿函数

关系仿函数

功能描述:

实现关系对比
仿函数原型:

template<class T> bool equal_to<T>       //等于
template<class T> bool not_equal<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>     //小于等于

代码示例:

#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
using namespace std;
//内建函数对象 关系仿函数
//大于 greater
class MyCompare
{
    
    
public:
       bool operator()(int v1, int v2)
       {
    
    
              return v1 > v2;
       }
};
void test01()
{
    
    
       vector<int>v;
       v.push_back(10);
       v.push_back(30);
       v.push_back(40);
       v.push_back(20);
       v.push_back(50);
       for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
       {
    
    
              cout << *it << " ";
       }
       cout << endl;
       //降序
       //sort(v.begin(), v.end(), MyCompare());
       //greater<int>()内建函数对象
       sort(v.begin(), v.end(), greater<int>());
       for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
       {
    
    
              cout << *it << " ";
       }
       cout << endl;
}
int main()
{
    
    
       test01();
       system("pause");
       return 0;
}

总结:关系仿函数中最常用的就是greater<>大于

猜你喜欢

转载自blog.csdn.net/gyqailxj/article/details/115077311
今日推荐