预定义函数和函数适配器2

#include <iostream>
using namespace std;
#include "set"
#include <string>
#include <vector>
#include <algorithm>
#include <functional>

class IsGreat
{
public:
	IsGreat(int i)
	{
		m_num = i;
	}

	bool operator()(int &num)
	{
		if (num > m_num)
		{
			return true;
		}
		return false;
	}

private:
	int m_num;

};
void main22()
{
	vector<int> v1;
	for (int i = 0; i < 10; i++)
	{
		v1.push_back(i+1);
	}

	for (vector<int>::iterator it = v1.begin(); it != v1.end(); it++)
	{
		cout << *it << " ";
	}
	cout << endl;

	int num1 = count(v1.begin(), v1.end(),3);
	cout << "num1:" << num1 << endl;

	//通过 谓词 求 大于2的个数

	int num2 = count_if(v1.begin(),v1.end(),IsGreat(2));
	cout << "num2:" << num2 << endl;

	//通过预定义的函数对象  求大于2的个数

	/*
	template<class _Ty = void>
	struct greater
		: public binary_function<_Ty, _Ty, bool>
	{	// functor for operator>
	bool operator()(const _Ty& _Left, const _Ty& _Right) const
		{	// apply operator> to operands
		return (_Left > _Right);
		}
	};
    */

	
	//greater<int>() 有两个参数  左参数来自容器的元素,右参数固定成2  (通过bind2nd做的)
	int num3 = count_if(v1.begin(),v1.end(),bind2nd(greater<int>(),2));
	cout << "num3:" << num3 << endl;

	// 求  奇数的个数
	int num4 = count_if(v1.begin(), v1.end(), bind2nd(modulus<int>(), 2));
	cout << "奇数的个数num4:" << num4 << endl;

	//求  偶数的个数
	int num5= count_if(v1.begin(), v1.end(),not1( bind2nd(modulus<int>(), 2)));
	cout << "偶数的个数num5:" << num5 << endl;


}
void main()
{
	main22(); //函数适配器综合案例
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值