命名空间
变体
操作

std::find_first_of

来自 cppreference.com
< cpp‎ | algorithm
 
 
算法库
受限算法和范围上的算法 (C++20)
受限算法,例如 ranges::copy, ranges::sort, ...
执行策略 (C++17)
排序和相关操作
分区操作
排序操作
二分搜索操作
(在分区范围上)
集合操作(在排序范围内)
合并操作(在排序范围内)
堆操作
最小/最大操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库
数值操作
未初始化内存上的操作
 
在头文件 <algorithm> 中定义
template< class InputIt, class ForwardIt >

InputIt find_first_of( InputIt first, InputIt last,

                       ForwardIt s_first, ForwardIt s_last );
(1) (从 C++20 开始支持 constexpr)
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 开始支持)
template< class InputIt, class ForwardIt, class BinaryPred >

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

                       BinaryPred p );
(3) (从 C++20 开始支持 constexpr)
template< class ExecutionPolicy,

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

                          BinaryPred 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>>true 时,这些重载才参与重载解析。

(直到 C++20)

std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>>true 时。

(从 C++20 开始支持)

内容

[编辑] 参数

first, last - 要检查的元素范围
s_first, s_last - 要搜索的元素范围
policy - 要使用的执行策略。有关详细信息,请参阅 执行策略
p - 二元谓词,如果元素应被视为相等则返回 ​true

谓词函数的签名应等效于以下内容

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

虽然签名不需要包含 const &,但函数不能修改传递给它的对象,并且必须能够接受类型为(可能为 const)Type1Type2 的所有值,无论其值类别如何(因此,Type1 & 不允许,除非 Type1 的移动等效于复制(自 C++11 起))。
类型 Type1Type2 必须能够使得类型为 ForwardIt1ForwardIt2 的对象可以解引用,然后隐式转换为 Type1Type2

类型要求
-
InputIt 必须满足 LegacyInputIterator 的要求。
-
ForwardIt 必须满足 LegacyForwardIterator 的要求。
-
ForwardIt1 必须满足 LegacyForwardIterator 的要求。
-
ForwardIt2 必须满足 LegacyForwardIterator 的要求。
-
BinaryPred 必须满足 BinaryPredicate 的要求。

[编辑] 返回值

指向范围 [firstlast) 中第一个与范围 [s_firsts_last) 中元素相等的元素的迭代器。

如果 [s_firsts_last) 为空,或者没有找到这样的元素,则返回 last

[编辑] 复杂度

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

1,2) 最多进行 N·S 次使用 operator== 的比较。
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 BinaryPred>
InputIt find_first_of(InputIt first, InputIt last,
                      ForwardIt s_first, ForwardIt s_last,
                      BinaryPred p)
{
    for (; first != last; ++first)
        for (ForwardIt it = s_first; it != s_last; ++it)
            if (p(*first, *it))
                return first;
    return last;
}

[编辑] 示例

以下代码在整数向量中搜索指定的任何整数。

#include <algorithm>
#include <iostream>
#include <vector>
 
auto print_sequence = [](const auto id, const auto& 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 << "No elements of v are equal to any element of ";
            print_sequence("t = ", t);
            print_sequence("v = ", v);
        }
        else
        {
            const auto pos = std::distance(v.begin(), result);
            std::cout << "Found a match (" << *result << ") at position " << pos;
            print_sequence(", where t = ", t);
            print_sequence("v = ", v, pos);
        }
    };
 
    find_any_of(v, t1);
    find_any_of(v, t2);
}

输出

Found a match (3) at position 2, where t = { 19, 10, 3, 4 }
v = { 0, 2, [ 3 ], 25, 5 }
No elements of v are equal to any element of t = { 1, 6, 7, 9 }
v = { 0, 2, 3, 25, 5 }

[编辑] 缺陷报告

以下行为更改缺陷报告已追溯应用于先前发布的 C++ 标准。

DR 应用于 已发布的行为 正确行为
LWG 576 C++98 firstlast 需要是 LegacyForwardIterators 它们只需要是
LegacyInputIterators
LWG 1205 C++98 如果 [s_firsts_last) 为空,返回值不明确 在这种情况下返回 last

[编辑] 另请参阅

查找满足特定条件的第一个元素
(函数模板) [编辑]
搜索一组元素中的任何一个
(niebloid)[编辑]