C++ Primer(第5版) 练习 14.42
练习 14.42 使用标准库函数对象及适配器定义一条表达式,令其
( a ) 统计大于1024的值有多少个。
( b ) 找到第一个不等于pooh的字符串。
( c ) 将所有的值乘以2。
环境:Linux Ubuntu(云服务器)
工具:vim
代码块
/*************************************************************************
> File Name: ex14.42.cpp
> Author:
> Mail:
> Created Time: Tue 09 Jul 2024 08:07:42 AM CST
************************************************************************/
#include<iostream>
#include<vector>
#include<functional>
#include<algorithm>
using namespace std;
int main(){
vector<int> num = {1, 2304, 323, 7896, 99, 2401};
vector<string> str = {"pooh", "pooh", "hello", "pooh", "world"};
auto count = count_if(num.begin(), num.end(), bind(greater<int>(), placeholders::_1, 1024));
cout<<">1024 = "<<count<<endl;
vector<string>::iterator iter = find_if_not(str.begin(), str.end(), bind(equal_to<string>(), placeholders::_1, "pooh" ));
if(iter != str.end()){
cout<<*iter<<endl;
}
transform(num.begin(), num.end(), num.begin(), bind(multiplies<int>(), placeholders::_1, 2));
for(auto n : num){
cout<<n<<" ";
}
cout<<endl;
return 0;
}