函数模板
<algorithm>

std::find_if

template <class InputIterator, class UnaryPredicate>   InputIterator find_if (InputIterator first, InputIterator last, UnaryPredicate pred);
在范围内查找元素
返回一个迭代器,指向范围 [first,last) 中第一个使 pred 返回 true 的元素。如果找不到这样的元素,则函数返回 last

此函数模板的行为等同于
1
2
3
4
5
6
7
8
9
template<class InputIterator, class UnaryPredicate>
  InputIterator find_if (InputIterator first, InputIterator last, UnaryPredicate pred)
{
  while (first!=last) {
    if (pred(*first)) return first;
    ++first;
  }
  return last;
}

参数

first, last
输入迭代器 指向序列的起始和结束位置。使用的范围是 [first,last),它包含 firstlast 之间的所有元素,包括 first 指向的元素,但不包括 last 指向的元素。
pred
一元函数,接受范围中的元素作为参数,并返回可转换为 bool 的值。返回值指示该元素是否在函数上下文中被视为匹配项。
该函数不得修改其参数。
这可以是函数指针或函数对象。

返回值

指向范围中第一个使 pred 返回 false 的元素的迭代器。
如果 pred 对所有元素都返回 false,则函数返回 last

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// find_if example
#include <iostream>     // std::cout
#include <algorithm>    // std::find_if
#include <vector>       // std::vector

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

int main () {
  std::vector<int> myvector;

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

  std::vector<int>::iterator it = std::find_if (myvector.begin(), myvector.end(), IsOdd);
  std::cout << "The first odd value is " << *it << '\n';

  return 0;
}

输出
The first odd value is 25


复杂度

最多与 firstlast 之间的 距离 成线性关系:对每个元素调用 pred 直到找到匹配项。

数据竞争

范围 [first,last) 中的一些(或全部)对象被访问(最多一次)。

异常

如果 pred 或迭代器上的操作抛出异常,则抛出异常。
请注意,无效的参数会导致 *未定义行为*。

另见