命名空间
变体
操作

std::ranges::is_partitioned

来自 cppreference.com
< cpp‎ | algorithm‎ | ranges
 
 
算法库
约束算法和范围上的算法 (C++20)
约束算法,例如 ranges::copy, ranges::sort, ...
执行策略 (C++17)
排序和相关操作
分区操作
排序操作
二分搜索操作
(在分区范围上)
集合操作(在排序范围上)
合并操作(在排序范围上)
堆操作
最小/最大操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库
数值操作
未初始化内存操作
 
约束算法
此菜单中的所有名称都属于命名空间 std::ranges
非修改序列操作
修改序列操作
分区操作
is_partitioned
  
排序操作
二分搜索操作(在排序范围上)
       
       
集合操作(在排序范围上)
堆操作
最小/最大操作
       
       
排列操作
折叠操作
数值操作
(C++23)            
未初始化存储操作
返回类型
 
定义在头文件 <algorithm>
调用签名
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

    is_partitioned( I first, S last, Pred pred, Proj proj = {} );
(1) (自 C++20 起)
template< ranges::input_range R, class Proj = std::identity,

          std::indirect_unary_predicate<
              std::projected<ranges::iterator_t<R>, Proj>> Pred >
constexpr bool

    is_partitioned( R&& r, Pred pred, Proj proj = {} );
(2) (自 C++20 起)
1) 如果范围 [firstlast) 中所有满足谓词 pred (经过投影)的元素都出现在所有不满足条件的元素之前,则返回 true。如果 [firstlast) 为空,也返回 true
2)(1) 相同,但使用 r 作为源范围,就好像使用 ranges::begin(r) 作为 first 以及 ranges::end(r) 作为 last

此页面上描述的类似函数的实体是 niebloids,即

在实践中,它们可能作为函数对象实现,或者使用特殊的编译器扩展。

内容

[编辑] 参数

first, last - 表示要检查的元素范围的迭代器-哨兵对
r - 要检查的元素范围
pred - 要应用于投影元素的谓词
proj - 要应用于元素的投影

[编辑] 返回值

true 如果范围 [firstlast) 为空,或者被 pred 分割,则返回 false

[编辑] 复杂度

最多 ranges::distance(first, last) 次调用 predproj

[编辑] 可能的实现

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

[编辑] 另请参阅

将元素范围分成两组
(niebloid)[编辑]
定位已分区的范围的分割点
(niebloid)[编辑]
确定范围是否被给定的谓词分割
(函数模板) [编辑]