C++ Primer第五版练习 14.42

本篇博客探讨了如何利用C++标准库中的函数对象和适配器来解决实际编程问题,包括统计大于1024的值的数量,查找第一个不等于特定字符串的元素,以及将所有元素乘以2。这些练习展示了C++ Primer第五版中高级C++编程技巧的应用。
摘要由CSDN通过智能技术生成

练习 14.42: 使用标准库函数对象及适配器定义一条表达式,令其:

(a) 统计大于1024的值有多少个。

#include <iostream>
#include <vector>
#include <functional>
#include <algorithm>

using namespace std;
using std::placeholders::_1;

int main() {
	vector<int> vec{
		1, 2, 3, 4, 1088, 42, 2096, 1024
	};
	auto cmp = bind(greater<int>(), _1, 1024);
	cout<< count_if(vec.begin(), vec.end(), cmp) << endl;
	return 0;
}

(b) 找到第一个不等于pooh的字符串

#include <iostream>
#include <vector>
#include <functional>
#include <algorithm>

using namespace std;
using std::placeholders::_1;

int main() {
	vector<string> vec{
		"pooh", "pony", "pis",
	};
	auto sln = bind(not_equal_to<string>(), "pooh", _1);
	vector<string>::iterator iter = find_if(vec.begin(), vec.end(), sln);
	if(iter != vec.end()) {
		cout<<*iter<<endl;
	}
	return 0;
}

(c) 将所有的值乘以2

#include <iostream>
#include <functional>
#include <vector>
#include <algorithm>

using namespace std;
using std::placeholders::_1;

int main() {
	vector<int> vec{
		1, 0, -1, 
	};
	auto multi = bind(multiplies<int>(), 2, _1);
	transform(vec.begin(), vec.end(), vec.begin(), multi);
	for(int i : vec) {
		cout<<i<<' ';
	}
	return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值