std::partition
来自 cppreference.cn
定义于头文件 <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。 对于类型为 (可能为 const) |
类型要求 | ||
-ForwardIt 必须满足 LegacyForwardIterator 的要求。 | ||
-UnaryPred 必须满足 Predicate 的要求。 |
[编辑] 返回值
指向第二个组中第一个元素的迭代器。
[编辑] 复杂度
给定 N 为 std::distance(first, last)
1) 精确 N 次对 p 的应用。
2) O(N) 次对 p 的应用。
O(N·log(N)) 次交换。
[编辑] 异常
带有名为 ExecutionPolicy
的模板参数的重载会按如下方式报告错误:
- 若算法一部分调用的函数抛出异常,且
ExecutionPolicy
为 标准策略 之一,则调用 std::terminate。对于任何其他ExecutionPolicy
,行为由实现定义。 - 如果算法未能分配内存,则抛出 std::bad_alloc。
[编辑] 可能的实现
实现重载 (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; } |
[编辑] 示例
运行此代码
#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
[编辑] 缺陷报告
下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。
缺陷报告 | 应用于 | 发布时的行为 | 正确的行为 |
---|---|---|---|
LWG 498 | C++98 | std::partition 要求 first 和last 为 LegacyBidirectionalIterator |
仅要求为 LegacyForwardIterator(传统前向迭代器) |
LWG 2150 | C++98 | std::partition 仅要求将一个满足 p 的元素放置在一个不满足 p 的元素之前 |
已更正 要求 |
[编辑] 参阅
(C++11) |
判断一个范围是否按给定谓词划分 (函数模板) |
将元素分成两组,同时保留它们的相对顺序 (函数模板) | |
(C++20) |
将一个范围的元素分成两组 (算法函数对象) |