std::stable_sort
来自 cppreference.cn
定义于头文件 <algorithm> |
||
template< class RandomIt > void stable_sort( RandomIt first, RandomIt last ); |
(1) | (constexpr since C++26) |
template< class ExecutionPolicy, class RandomIt > void stable_sort( ExecutionPolicy&& policy, |
(2) | (since C++17) |
template< class RandomIt, class Compare > void stable_sort( RandomIt first, RandomIt last, Compare comp ); |
(3) | (constexpr since C++26) |
template< class ExecutionPolicy, class RandomIt, class Compare > void stable_sort( ExecutionPolicy&& policy, |
(4) | (since C++17) |
对范围 [
first,
last)
中的元素进行非降序排序。保证相等元素的顺序被保留。
3) 元素通过 comp 进行排序。
2,4) 与 (1,3) 相同,但根据 policy 执行。
这些重载仅在满足以下所有条件时参与重载决议
std::is_execution_policy_v<std::decay_t<ExecutionPolicy>> 为 true。 |
(until C++20) |
std::is_execution_policy_v<std::remove_cvref_t<ExecutionPolicy>> 为 true。 |
(since C++20) |
如果满足以下任何条件,则行为未定义
|
(until C++11) |
|
(since C++11) |
目录 |
[编辑] 参数
first, last | - | 定义要排序元素范围的迭代器对 |
policy | - | 要使用的执行策略 |
comp | - | 比较函数对象 (即满足 Compare 要求的对象),如果第一个参数小于(即排序在之前)第二个参数,则返回 true。 比较函数的签名应等效于以下形式 bool cmp(const Type1& a, const Type2& b); 虽然签名不需要有 const&,但该函数不能修改传递给它的对象,并且必须能够接受类型为 |
类型要求 | ||
-RandomIt 必须满足 LegacyRandomAccessIterator 的要求。 | ||
-Compare 必须满足 Compare 的要求。 |
[编辑] 复杂度
给定 N 为 last - first
1,2) 如果有足够的额外内存可用,则使用 operator<(until C++20)std::less{}(since C++20) 进行 O(N·log(N)) 次比较,否则进行 O(N·log2
(N)) 次比较。
(N)) 次比较。
3,4) 如果有足够的额外内存可用,则应用比较器 comp O(N·log(N)) 次,否则应用 O(N·log2
(N)) 次。
(N)) 次。
[编辑] 异常
具有名为 ExecutionPolicy
的模板参数的重载按如下方式报告错误
- 如果作为算法一部分调用的函数的执行抛出异常,并且
ExecutionPolicy
是标准策略之一,则调用 std::terminate。对于任何其他ExecutionPolicy
,行为是实现定义的。 - 如果算法无法分配内存,则抛出 std::bad_alloc。
[编辑] 可能的实现
[编辑] 注解
此函数尝试分配一个大小与要排序的序列相等的临时缓冲区。如果分配失败,则选择效率较低的算法。
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__cpp_lib_constexpr_algorithms |
202306L |
(C++26) | constexpr 稳定排序,重载 (1), (3) |
[编辑] 示例
运行此代码
#include <algorithm> #include <array> #include <iostream> #include <string> #include <vector> struct Employee { int age; std::string name; // Does not participate in comparisons }; bool operator<(const Employee& lhs, const Employee& rhs) { return lhs.age < rhs.age; } #if __cpp_lib_constexpr_algorithms >= 202306L consteval auto get_sorted() { auto v = std::array{3, 1, 4, 1, 5, 9}; std::stable_sort(v.begin(), v.end()); return v; } static_assert(std::ranges::is_sorted(get_sorted())); #endif int main() { std::vector<Employee> v{{108, "Zaphod"}, {32, "Arthur"}, {108, "Ford"}}; std::stable_sort(v.begin(), v.end()); for (const Employee& e : v) std::cout << e.age << ", " << e.name << '\n'; }
输出
32, Arthur 108, Zaphod 108, Ford
[编辑] 参见
将范围排序为升序 (函数模板) | |
对范围的前 N 个元素进行排序 (函数模板) | |
将元素划分为两组,同时保留它们的相对顺序 (函数模板) | |
(C++20) |
对元素范围进行排序,同时保留相等元素之间的顺序 (算法函数对象) |