find_if http://www.cplusplus.com/reference/algorithm/find_first_of/

// find_if example
#include <iostream>
#include
<algorithm>
#include
<vector>
using namespace std;

bool IsOdd (int i) {
return ((i%2)==1);
}

int main () {
vector
<int> myvector;
vector
<int>::iterator it;

myvector.push_back(
10);
myvector.push_back(
25);
myvector.push_back(
40);
myvector.push_back(
55);

it
= find_if (myvector.begin(), myvector.end(), IsOdd);
cout
<< "The first odd value is " << *it << endl;

return 0;
}

posted on 2011-07-29 23:05  more think, more gains  阅读(130)  评论(0编辑  收藏  举报

导航