std::find_first_of

来自cppreference.com
< cpp‎ | algorithm
 
 
算法库
受约束算法及范围上的算法 (C++20)
受约束算法: std::ranges::copy, std::ranges::sort, ...
执行策略 (C++17)
不修改序列的操作
(C++11)(C++11)(C++11)
(C++17)
find_first_of
修改序列的操作
Partitioning operations
划分操作
排序操作
(C++11)
二分搜索操作
集合操作(在已排序范围上)
堆操作
(C++11)
最小/最大操作
(C++11)
(C++17)

排列
数值运算
未初始化存储上的操作
(C++17)
(C++17)
(C++17)
C 库
 
在标头 <algorithm> 定义
(1)
template< class InputIt, class ForwardIt >

InputIt find_first_of( InputIt first, InputIt last,

                       ForwardIt s_first, ForwardIt s_last );
(C++20 前)
template< class InputIt, class ForwardIt >

constexpr InputIt find_first_of( InputIt first, InputIt last,

                                 ForwardIt s_first, ForwardIt s_last );
(C++20 起)
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2 >

ForwardIt1 find_first_of( ExecutionPolicy&& policy,
                          ForwardIt1 first, ForwardIt1 last,

                          ForwardIt2 s_first, ForwardIt2 s_last );
(2) (C++17 起)
(3)
template< class InputIt, class ForwardIt, class BinaryPredicate >

InputIt find_first_of( InputIt first, InputIt last,
                       ForwardIt s_first, ForwardIt s_last,

                       BinaryPredicate p );
(C++20 前)
template< class InputIt, class ForwardIt, class BinaryPredicate >

constexpr InputIt find_first_of( InputIt first, InputIt last,
                                 ForwardIt s_first, ForwardIt s_last,

                                 BinaryPredicate p );
(C++20 起)
template< class ExecutionPolicy, class ForwardIt1, class ForwardIt2,

          class BinaryPredicate >
ForwardIt1 find_first_of( ExecutionPolicy&& policy,
                          ForwardIt1 first, ForwardIt last,
                          ForwardIt2 s_first, ForwardIt2 s_last,

                          BinaryPredicate p );
(4) (C++17 起)

在范围 [firstlast) 中搜索范围 [s_firsts_last) 中的任何元素。

1)operator== 比较元素。
3) 用给定的二元谓词 p 比较元素。
2,4)(1,3) ,但按照 policy 执行。这些重载只有在

std::is_execution_policy_v<std::decay_t<ExecutionPolicy>>

(C++20 前)

std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>>

(C++20 起)
true 时才会参与重载决议。

参数

first, last - 要检验的元素范围
s_first, s_last - 要搜索的元素范围
policy - 所用的执行策略。细节见执行策略
p - 若元素应被当做相等则返回 ​true 的二元谓词。

谓词函数的签名应等价于如下:

 bool pred(const Type1 &a, const Type2 &b);

虽然签名不必有 const & ,函数也不能修改传递给它的对象,而且必须接受(可为 const 的)类型 Type1Type2 的值,无关乎值类别(从而不允许 Type1 & ,亦不允许 Type1 ,除非 Type1 的移动等价于复制 (C++11 起))。
类型 Type1Type2 必须使得 ForwardIt1ForwardIt2 类型的对象在解引用后分别能隐式转换到 Type1Type2。 ​

类型要求
-
InputIt 必须符合老式输入迭代器 (LegacyInputIterator) 的要求。
-
ForwardIt 必须符合老式向前迭代器 (LegacyForwardIterator) 的要求。
-
ForwardIt1 必须符合老式向前迭代器 (LegacyForwardIterator) 的要求。
-
ForwardIt2 必须符合老式向前迭代器 (LegacyForwardIterator) 的要求。
-
BinaryPredicate 必须符合二元谓词 (BinaryPredicate) 的要求。

返回值

指向范围 [firstlast) 中等于来自范围 [s_firsts_last) 中一个元素的首个元素。

如果 [s_firsts_last) 为空或找不到这种元素,那么就会返回 last

复杂度

给定 Nstd::distance(first, last)Sstd::distance(s_first, s_last)

1,2) 应用最多 N·Soperator== 进行比较。
3,4) 应用最多 N·S 次谓词 p

异常

拥有名为 ExecutionPolicy 的模板形参的重载按下列方式报告错误:

  • 如果作为算法一部分调用的函数的执行抛出异常,且 ExecutionPolicy标准策略之一,那么调用 std::terminate。对于任何其他 ExecutionPolicy,行为由实现定义。
  • 如果算法无法分配内存,那么抛出 std::bad_alloc

可能的实现

find_first_of (1)
template<class InputIt, class ForwardIt>
InputIt find_first_of(InputIt first, InputIt last,
                      ForwardIt s_first, ForwardIt s_last)
{
    for (; first != last; ++first)
        for (ForwardIt it = s_first; it != s_last; ++it)
            if (*first == *it)
                return first;
    return last;
}
find_first_of (3)
template<class InputIt, class ForwardIt, class BinaryPredicate>
InputIt find_first_of(InputIt first, InputIt last,
                      ForwardIt s_first, ForwardIt s_last,
                      BinaryPredicate p)
{
    for (; first != last; ++first)
        for (ForwardIt it = s_first; it != s_last; ++it)
            if (p(*first, *it))
                return first;
    return last;
}

示例

下列代码在包含整数的 vector 中搜索任何一个指定的整数:

#include <algorithm>
#include <iostream>
#include <vector>
 
auto print_sequence = [](auto const id, auto const& seq, int pos = -1)
{
    std::cout << id << "{ ";
    for (int i{}; auto const& e : seq)
    {
        const bool mark{i == pos};
        std::cout << (i++ ? ", " : "");
        std::cout << (mark ? "[ " : "") << e << (mark ? " ]" : "");
    }
    std::cout << " }\n";
};
 
int main()
{
    const std::vector<int> v{0, 2, 3, 25, 5};
    const auto t1 = {19, 10, 3, 4};
    const auto t2 = {1, 6, 7, 9};
 
    auto find_any_of = [](const auto& v, const auto& t)
    {
        const auto result = std::find_first_of(v.begin(), v.end(),
                                               t.begin(), t.end());
        if (result == v.end())
        {
            std::cout << "v 和 t 中没有相等的元素\n";
            print_sequence("t = ", t);
            print_sequence("v = ", v);
        }
        else
        {
            const auto pos = std::distance(v.begin(), result);
            std::cout << "在位置 " << pos << " 找到匹配 (" << *result << ")\n";
            print_sequence(", where t = ", t);
            print_sequence("v = ", v, pos);
        }
    };
 
    find_any_of(v, t1);
    find_any_of(v, t2);
}

输出:

在位置 2 找到匹配 (3)
t = { 19, 10, 3, 4 }
v = { 0, 2, [ 3 ], 25, 5 }
v 和 t 中没有相等的元素
t = { 1, 6, 7, 9 }
v = { 0, 2, 3, 25, 5 }

缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告 应用于 出版时的行为 正确行为
LWG 576 C++98 firstlast 需要是老式向前迭代器 (LegacyForwardIterator) 只需要是老式输入迭代器 (LegacyInputIterator)
LWG 1205 C++98 [s_firsts_last) 为空时返回值不明确 此时会返回 last

参阅

寻找首个满足特定判别标准的元素
(函数模板)
查找元素集合中的任一元素
(niebloid)