std::is_partitioned
来自 cppreference.com
在头文件 <algorithm> 中定义 |
||
template< class InputIt, class UnaryPred > bool is_partitioned( InputIt first, InputIt last, UnaryPred p ); |
(1) | (自 C++11 起) (自 C++20 起为 constexpr) |
template< class ExecutionPolicy, class ForwardIt, class UnaryPred > bool is_partitioned( ExecutionPolicy&& policy, |
(2) | (自 C++17 起) |
1) 检查
[
first,
last)
是否按谓词 p 分区:所有满足 p 的元素出现在所有不满足该元素的元素之前。2) 与 (1) 相同,但根据 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 | - | 一元谓词,对于期望在范围开头找到的元素返回 true。 表达式 p(v) 必须可转换为 bool,适用于所有类型为 (可能为 const) |
类型要求 | ||
-InputIt 必须满足 LegacyInputIterator 的要求。 | ||
-ForwardIt 必须满足 LegacyForwardIterator 的要求,其值类型必须可转换为 UnaryPred 的参数类型。 | ||
-UnaryPred 必须满足 Predicate 的要求。 |
[编辑] 返回值
如果 [
first,
last)
的元素 e 相对于表达式 p(e) 被 分区,则返回 true。否则返回 false。
[编辑] 复杂度
最多 std::distance(first, last) 次 p 的应用。
[编辑] 异常
带有名为 ExecutionPolicy
的模板参数的重载报告错误如下
- 如果作为算法的一部分调用的函数的执行抛出异常,并且
ExecutionPolicy
是 标准策略 之一,则调用 std::terminate。对于任何其他ExecutionPolicy
,行为是实现定义的。 - 如果算法无法分配内存,则抛出 std::bad_alloc。
[编辑] 可能的实现
template<class InputIt, class UnaryPred> bool is_partitioned(InputIt first, InputIt last, UnaryPred p) { for (; first != last; ++first) if (!p(*first)) break; for (; first != last; ++first) if (p(*first)) return false; return true; } |
[编辑] 示例
运行此代码
#include <algorithm> #include <array> #include <iostream> int main() { std::array<int, 9> v {1, 2, 3, 4, 5, 6, 7, 8, 9}; auto is_even = [](int i) { return i % 2 == 0; }; std::cout.setf(std::ios_base::boolalpha); std::cout << std::is_partitioned(v.begin(), v.end(), is_even) << ' '; std::partition(v.begin(), v.end(), is_even); std::cout << std::is_partitioned(v.begin(), v.end(), is_even) << ' '; std::reverse(v.begin(), v.end()); std::cout << std::is_partitioned(v.cbegin(), v.cend(), is_even) << ' '; std::cout << std::is_partitioned(v.crbegin(), v.crend(), is_even) << '\n'; }
输出
false true false true
[编辑] 另请参阅
将元素范围划分为两个组 (函数模板) | |
(C++11) |
找到已分区范围的分区点 (函数模板) |
(C++20) |
确定范围是否按给定谓词进行分区 (niebloid) |