命名空间
变体
操作

std::all_of、std::any_of、std::none_of

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

bool all_of( ExecutionPolicy&& policy,

             ForwardIt first, ForwardIt last, UnaryPred p );
(2) (自 C++17)
template< class InputIt, class UnaryPred >
bool any_of( InputIt first, InputIt last, UnaryPred p );
(3) (自 C++11)
(自 C++20 起为 constexpr)
template< class ExecutionPolicy, class ForwardIt, class UnaryPred >

bool any_of( ExecutionPolicy&& policy,

             ForwardIt first, ForwardIt last, UnaryPred p );
(4) (自 C++17)
template< class InputIt, class UnaryPred >
bool none_of( InputIt first, InputIt last, UnaryPred p );
(5) (自 C++11)
(自 C++20 起为 constexpr)
template< class ExecutionPolicy, class ForwardIt, class UnaryPred >

bool none_of( ExecutionPolicy&& policy,

              ForwardIt first, ForwardIt last, UnaryPred p );
(6) (自 C++17)
1) 检查一元谓词 p 是否对范围 [firstlast) 中的所有元素返回 true
3) 检查一元谓词 p 是否对范围 [firstlast) 中的至少一个元素返回 true
5) 检查一元谓词 p 是否对范围 [firstlast) 中的任何元素都不返回 true
2,4,6)(1,3,5) 相同,但根据 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 - 要检查的元素范围
policy - 要使用的执行策略。有关详细信息,请参阅 执行策略
p - 一元谓词。

表达式 p(v) 必须可转换为 bool,对于类型 (可能为 const) VT 的每个参数 v(无论其 值类别 如何),并且不得修改 v。因此,VT& 的参数类型是不允许的,除非对于 VT,移动等效于复制(自 C++11 起)。​

类型要求
-
InputIt 必须满足 LegacyInputIterator 的要求。
-
ForwardIt 必须满足 LegacyForwardIterator 的要求。
-
UnaryPred 必须满足 Predicate 的要求。

[编辑] 返回值

是否包含 true 元素
 是否包含 false 元素 
all_of false true false true
any_of true true   false     false  
none_of   false     false   true true

[编辑] 复杂度

1-6) 最多应用 std::distance(first, last) 次谓词 p.

[编辑] 异常

带有名为 ExecutionPolicy 的模板参数的重载函数会报告以下错误

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

[编辑] 可能的实现

另请参阅以下实现:

all_of
template<class InputIt, class UnaryPred>
constexpr bool all_of(InputIt first, InputIt last, UnaryPred p)
{
    return std::find_if_not(first, last, p) == last;
}
any_of
template<class InputIt, class UnaryPred>
constexpr bool any_of(InputIt first, InputIt last, UnaryPred p)
{
    return std::find_if(first, last, p) != last;
}
none_of
template<class InputIt, class UnaryPred>
constexpr bool none_of(InputIt first, InputIt last, UnaryPred p)
{
    return std::find_if(first, last, p) == last;
}

[编辑] 示例

#include <algorithm>
#include <functional>
#include <iostream>
#include <iterator>
#include <numeric>
#include <vector>
 
int main()
{
    std::vector<int> v(10, 2);
    std::partial_sum(v.cbegin(), v.cend(), v.begin());
    std::cout << "Among the numbers: ";
    std::copy(v.cbegin(), v.cend(), std::ostream_iterator<int>(std::cout, " "));
    std::cout << '\n';
 
    if (std::all_of(v.cbegin(), v.cend(), [](int i) { return i % 2 == 0; }))
        std::cout << "All numbers are even\n";
 
    if (std::none_of(v.cbegin(), v.cend(), std::bind(std::modulus<>(),
                                                     std::placeholders::_1, 2)))
        std::cout << "None of them are odd\n";
 
    struct DivisibleBy
    {
        const int d;
        DivisibleBy(int n) : d(n) {}
        bool operator()(int n) const { return n % d == 0; }
    };
 
    if (std::any_of(v.cbegin(), v.cend(), DivisibleBy(7)))
        std::cout << "At least one number is divisible by 7\n";
}

输出

Among the numbers: 2 4 6 8 10 12 14 16 18 20
All numbers are even
None of them are odd
At least one number is divisible by 7

[编辑] 另请参阅

检查谓词是否对范围内所有元素、任何元素或无元素为 true
(niebloid)[编辑]