命名空间
变体
操作

std::partition

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

ForwardIt partition( ExecutionPolicy&& policy,

                     ForwardIt first, ForwardIt last, UnaryPred p );
(2) (自 C++17 起)
1) 重新排列范围 [firstlast) 中的元素,使所有谓词 p 返回 true 的元素位于所有谓词 p 返回 false 的元素之前。元素的相对顺序不保留。
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 不是 Swappable(直到 C++11)ForwardIt 不是 ValueSwappable(自 C++11 起),行为未定义。

内容

[编辑] 参数

first, last - 要重新排列的元素范围
policy - 要使用的执行策略。有关详细信息,请参见 执行策略
p - 一元谓词,如果元素应在其他元素之前排序,则返回 ​true

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

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

[编辑] 返回值

指向第二组的第一个元素的迭代器。

[编辑] 复杂度

假设 Nstd::distance(first, last)

1) 正好 N 次应用 p
如果 ForwardIt 满足 LegacyBidirectionalIterator 的要求,则最多进行 N/2 次交换;否则,最多进行 N 次交换。
2) O(N)p 应用。
O(N·log(N)) 次交换。

[edit] 异常

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

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

[edit] 可能的实现

实现重载 (1) 保持 C++11 兼容性。

template<class ForwardIt, class UnaryPred>
ForwardIt partition(ForwardIt first, ForwardIt last, UnaryPred p)
{
    first = std::find_if_not(first, last, p);
    if (first == last)
        return first;
 
    for (auto i = std::next(first); i != last; ++i)
        if (p(*i))
        {
            std::iter_swap(i, first);
            ++first;
        }
 
    return first;
}

[edit] 示例

#include <algorithm>
#include <forward_list>
#include <iostream>
#include <iterator>
#include <vector>
 
template<class ForwardIt>
void quicksort(ForwardIt first, ForwardIt last)
{
    if (first == last)
        return;
 
    auto pivot = *std::next(first, std::distance(first, last) / 2);
    auto middle1 = std::partition(first, last, [pivot](const auto& em)
    {
        return em < pivot;
    });
    auto middle2 = std::partition(middle1, last, [pivot](const auto& em)
    {
        return !(pivot < em);
    });
 
    quicksort(first, middle1);
    quicksort(middle2, last);
}
 
int main()
{
    std::vector<int> v{0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
    std::cout << "Original vector: ";
    for (int elem : v)
        std::cout << elem << ' ';
 
    auto it = std::partition(v.begin(), v.end(), [](int i) {return i % 2 == 0;});
 
    std::cout << "\nPartitioned vector: ";
    std::copy(std::begin(v), it, std::ostream_iterator<int>(std::cout, " "));
    std::cout << "* ";
    std::copy(it, std::end(v), std::ostream_iterator<int>(std::cout, " "));
 
    std::forward_list<int> fl {1, 30, -4, 3, 5, -4, 1, 6, -8, 2, -5, 64, 1, 92};
    std::cout << "\nUnsorted list: ";
    for (int n : fl)
        std::cout << n << ' ';
 
    quicksort(std::begin(fl), std::end(fl));
    std::cout << "\nSorted using quicksort: ";
    for (int fi : fl)
        std::cout << fi << ' ';
    std::cout << '\n';
}

可能的输出

Original vector: 0 1 2 3 4 5 6 7 8 9 
Partitioned vector: 0 8 2 6 4 * 5 3 7 1 9 
Unsorted list: 1 30 -4 3 5 -4 1 6 -8 2 -5 64 1 92 
Sorted using quicksort: -8 -5 -4 -4 1 1 1 2 3 5 6 30 64 92

[edit] 缺陷报告

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

DR 应用于 已发布的行为 正确行为
LWG 498 C++98 std::partition 要求 first
lastLegacyBidirectionalIterator
仅要求为
LegacyForwardIterator
LWG 2150 C++98 std::partition 仅要求将一个元素
满足 p 的元素放置在一个不满足 p 的元素之前
修正了
要求

[edit] 另请参阅

确定范围是否由给定谓词分隔
(函数模板) [edit]
将元素分成两组,同时保持其相对顺序
(函数模板) [edit]
将元素范围分成两组
(niebloid)[edit]