std::partition
来自 cppreference.com
定义在头文件 <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, |
(2) | (自 C++17 起) |
1) 重新排列范围
[
first,
last)
中的元素,使所有谓词 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) |
类型要求 | ||
-ForwardIt 必须满足 LegacyForwardIterator 的要求。 | ||
-UnaryPred 必须满足 Predicate 的要求。 |
[编辑] 返回值
指向第二组的第一个元素的迭代器。
[编辑] 复杂度
假设 N 为 std::distance(first, last)
1) 正好 N 次应用 p。
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 和last 为 LegacyBidirectionalIterator |
仅要求为 LegacyForwardIterator |
LWG 2150 | C++98 | std::partition 仅要求将一个元素满足 p 的元素放置在一个不满足 p 的元素之前 |
修正了 要求 |
[edit] 另请参阅
(C++11) |
确定范围是否由给定谓词分隔 (函数模板) |
将元素分成两组,同时保持其相对顺序 (函数模板) | |
(C++20) |
将元素范围分成两组 (niebloid) |