std::ranges::is_partitioned
来自 cppreference.com
定义在头文件 <algorithm> 中 |
||
调用签名 |
||
template< std::input_iterator I, std::sentinel_for<I> S, class Proj = std::identity, |
(1) | (自 C++20 起) |
template< ranges::input_range R, class Proj = std::identity, std::indirect_unary_predicate< |
(2) | (自 C++20 起) |
1) 如果范围
[
first,
last)
中所有满足谓词 pred (经过投影)的元素都出现在所有不满足条件的元素之前,则返回 true。如果 [
first,
last)
为空,也返回 true。此页面上描述的类似函数的实体是 niebloids,即
在实践中,它们可能作为函数对象实现,或者使用特殊的编译器扩展。
内容 |
[编辑] 参数
first, last | - | 表示要检查的元素范围的迭代器-哨兵对 |
r | - | 要检查的元素范围 |
pred | - | 要应用于投影元素的谓词 |
proj | - | 要应用于元素的投影 |
[编辑] 返回值
true 如果范围 [
first,
last)
为空,或者被 pred 分割,则返回 false。
[编辑] 复杂度
最多 ranges::distance(first, last) 次调用 pred 和 proj。
[编辑] 可能的实现
struct is_partitioned_fn { template<std::input_iterator I, std::sentinel_for<I> S, class Proj = std::identity, std::indirect_unary_predicate<std::projected<I, Proj>> Pred> constexpr bool operator()(I first, S last, Pred pred, Proj proj = {}) const { for (; first != last; ++first) if (!std::invoke(pred, std::invoke(proj, *first))) break; for (; first != last; ++first) if (std::invoke(pred, std::invoke(proj, *first))) return false; return true; } template<ranges::input_range R, class Proj = std::identity, std::indirect_unary_predicate<std::projected<ranges::iterator_t<R>, Proj>> Pred> constexpr bool operator()(R&& r, Pred pred, Proj proj = {}) const { return (*this)(ranges::begin(r), ranges::end(r), std::ref(pred), std::ref(proj)); } }; inline constexpr auto is_partitioned = is_partitioned_fn(); |
[编辑] 示例
运行此代码
#include <algorithm> #include <array> #include <iostream> #include <numeric> #include <utility> int main() { std::array<int, 9> v; auto print = [&v](bool o) { for (int x : v) std::cout << x << ' '; std::cout << (o ? "=> " : "=> not ") << "partitioned\n"; }; auto is_even = [](int i) { return i % 2 == 0; }; std::iota(v.begin(), v.end(), 1); // or std::ranges::iota(v, 1); print(std::ranges::is_partitioned(v, is_even)); std::ranges::partition(v, is_even); print(std::ranges::is_partitioned(std::as_const(v), is_even)); std::ranges::reverse(v); print(std::ranges::is_partitioned(v.cbegin(), v.cend(), is_even)); print(std::ranges::is_partitioned(v.crbegin(), v.crend(), is_even)); }
输出
1 2 3 4 5 6 7 8 9 => not partitioned 2 4 6 8 5 3 7 1 9 => partitioned 9 1 7 3 5 8 6 4 2 => not partitioned 9 1 7 3 5 8 6 4 2 => partitioned
[编辑] 另请参阅
(C++20) |
将元素范围分成两组 (niebloid) |
(C++20) |
定位已分区的范围的分割点 (niebloid) |
(C++11) |
确定范围是否被给定的谓词分割 (函数模板) |