forked from pezy/CppPrimer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ex10_24.cpp
48 lines (42 loc) · 1.05 KB
/
ex10_24.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
//!
//! @author @Yue Wang @shbling
//!
//! Exercise 10.24:
//! Use bind and check_size to find the first element in a vector of ints that
//! has a value greater
//! than the length of a specified string value.
//!
// Discussion over this exercise on StackOverflow
// http://stackoverflow.com/questions/20539406/what-type-does-stdfind-if-not-return
//!
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
using std::cout;
using std::endl;
using std::string;
using std::vector;
using std::find_if;
using std::bind;
inline bool check_size(const string& s, string::size_type sz)
{
return s.size() < sz;
}
inline vector<int>::const_iterator find_first_bigger(const vector<int>& v,
const string& s)
{
return find_if(v.cbegin(), v.cend(),
bind(check_size, s, std::placeholders::_1));
}
int main()
{
vector<int> v{1, 2, 3, 4, 5, 6, 7};
string s("test");
cout << *find_first_bigger(v, s) << endl;
return 0;
}
//! output;
//!
// 5