std::find, std::find_if, std::find_if_not
在标头 <algorithm> 定义
|
||
(1) | ||
template< class InputIt, class T > InputIt find( InputIt first, InputIt last, const T& value ); |
(C++20 起为 constexpr ) (C++26 前) |
|
template< class InputIt, class T = typename std::iterator_traits <InputIt>::value_type > |
(C++26 起) | |
(2) | ||
template< class ExecutionPolicy, class ForwardIt, class T > ForwardIt find( ExecutionPolicy&& policy, |
(C++17 起) (C++26 前) |
|
template< class ExecutionPolicy, class ForwardIt, class T = typename std::iterator_traits |
(C++26 起) | |
template< class InputIt, class UnaryPred > InputIt find_if( InputIt first, InputIt last, UnaryPred p ); |
(3) | (C++20 起为 constexpr ) |
template< class ExecutionPolicy, class ForwardIt, class UnaryPred > ForwardIt find_if( ExecutionPolicy&& policy, |
(4) | (C++17 起) |
template< class InputIt, class UnaryPred > InputIt find_if_not( InputIt first, InputIt last, UnaryPred q ); |
(5) | (C++11 起) (C++20 起为 constexpr ) |
template< class ExecutionPolicy, class ForwardIt, class UnaryPred > ForwardIt find_if_not( ExecutionPolicy&& policy, |
(6) | (C++17 起) |
返回指向范围 [
first,
last)
中满足特定判别标准的首个元素的迭代器(没有这种元素时返回 last)。
find
搜索等于(用 operator== 比较)value 的元素。find_if
搜索谓词 p 对其返回 true 的元素。find_if_not
搜索谓词 q 对其返回 false 的元素。
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> |
(C++20 前) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> |
(C++20 起) |
参数
first, last | - | 要检验的元素范围 |
value | - | 要与元素比较的值 |
policy | - | 所用的执行策略。细节见执行策略。 |
p | - | 如果是要求的元素则返回 true 的一元谓词。 对每个(可为 const 的) |
q | - | 如果是要求的元素则返回 false 的一元谓词。 对每个(可为 const 的) |
类型要求 | ||
-InputIt 必须满足老式输入迭代器 (LegacyInputIterator) 。
| ||
-ForwardIt 必须满足老式向前迭代器 (LegacyForwardIterator) 。
| ||
-UnaryPredicate 必须满足谓词 (Predicate) 。
|
返回值
范围 [
first,
last)
中首个满足以下条件的迭代器 it,或者在没有满足条件的迭代器时返回 last:
复杂度
给定 N 为 std::distance(first, last):
operator==
与 value 进行比较。异常
拥有名为 ExecutionPolicy
的模板形参的重载按下列方式报告错误:
- 如果作为算法一部分调用的函数的执行抛出异常,且
ExecutionPolicy
是标准策略之一,那么调用 std::terminate。对于任何其他ExecutionPolicy
,行为由实现定义。 - 如果算法无法分配内存,那么抛出 std::bad_alloc。
可能的实现
find |
---|
template<class InputIt, class T = typename std::iterator_traits<InputIt>::value_type> constexpr InputIt find(InputIt first, InputIt last, const T& value) { for (; first != last; ++first) if (*first == value) return first; return last; } |
find_if |
template<class InputIt, class UnaryPred> constexpr InputIt find_if(InputIt first, InputIt last, UnaryPred p) { for (; first != last; ++first) if (p(*first)) return first; return last; } |
find_if_not |
template<class InputIt, class UnaryPred> constexpr InputIt find_if_not(InputIt first, InputIt last, UnaryPred q) { for (; first != last; ++first) if (!q(*first)) return first; return last; } |
注解
如果没有 C++11,那么 std::find_if_not
的等价版本是以取反的谓词使用 std::find_if
。
template<class InputIt, class UnaryPred> InputIt find_if_not(InputIt first, InputIt last, UnaryPred q) { return std::find_if(first, last, std::not1(q)); } |
功能特性测试宏 | 值 | 标准 | 功能特性 |
---|---|---|---|
__cpp_lib_algorithm_default_value_type |
202403 | (C++26) | 算法中的列表初始化 (1,2) |
示例
以下示例在给定的序列中查找数值。
#include <algorithm> #include <array> #include <cassert> #include <complex> #include <iostream> #include <vector> int main() { const auto v = {1, 2, 3, 4}; for (const int n : {3, 5}) (std::find(v.begin(), v.end(), n) == std::end(v)) ? std::cout << "v 不包含 " << n << '\n' : std::cout << "v 包含 " << n << '\n'; auto is_even = [](int i) { return i % 2 == 0; }; for (const auto& w : {std::array{3, 1, 4}, {1, 3, 5}}) if (auto it = std::find_if(std::begin(w), std::end(w), is_even); it != std::end(w)) std::cout << "w 包含偶数:" << *it << '\n'; else std::cout << "w 不包含偶数\n"; std::vector<std::complex<double>> nums{{4, 2}}; #ifdef __cpp_lib_algorithm_default_value_type // 推导的 T 使得列表初始化成为可能 const auto it = std::find(nums.begin(), nums.end(), {4, 2}); #else const auto it = std::find(nums.begin(), nums.end(), std::complex<double>{4, 2}); #endif assert(it == nums.begin()); }
输出:
v 包含 3 v 不包含 5 w 包含偶数:4 w 不包含偶数
缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 出版时的行为 | 正确行为 |
---|---|---|---|
LWG 283 | C++98 | T 需要是可相等比较 (EqualityComparable) 的,但是 InputIt 的值类型不一定是 T
|
移除该要求 |
参阅
查找首对相邻的相同(或满足给定谓词的)元素 (函数模板) | |
在特定范围中寻找最后出现的元素序列 (函数模板) | |
搜索元素集合中的任意元素 (函数模板) | |
寻找两个范围出现不同的首个位置 (函数模板) | |
搜索一个元素范围的首次出现 (函数模板) | |
(C++20)(C++20)(C++20) |
查找满足特定条件的的第一个元素 (niebloid) |