命名空间
变体
操作

std::sort

来自 cppreference.cn
< cpp‎ | 算法
 
 
算法库
有约束算法与针对范围的算法 (C++20)
有约束的算法,例如 ranges::copyranges::sort 等……
执行策略 (C++17)
排序及相关操作
划分操作
排序操作
二分搜索操作
(于已划分范围上)
集合操作(于已排序范围上)
归并操作(于已排序范围上)
堆操作
最小/最大值操作
(C++11)
(C++17)
字典序比较操作
排列操作
C 库
数值操作
未初始化内存上的操作
 
定义于头文件 <algorithm>
template< class RandomIt >
void sort( RandomIt first, RandomIt last );
(1) (C++20 起为 constexpr)
template< class ExecutionPolicy, class RandomIt >

void sort( ExecutionPolicy&& policy,

           RandomIt first, RandomIt last );
(2) (C++17 起)
template< class RandomIt, class Compare >
void sort( RandomIt first, RandomIt last, Compare comp );
(3) (C++20 起为 constexpr)
template< class ExecutionPolicy, class RandomIt, class Compare >

void sort( ExecutionPolicy&& policy,

           RandomIt first, RandomIt last, Compare comp );
(4) (C++17 起)

将范围 [firstlast) 中的元素按非降序排序。不保证相等元素的顺序。

1) 元素根据 operator<(直至 C++20)std::less{}(自 C++20 起) 排序。
3) 元素根据 comp 排序。
2,4)(1,3),但按 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 起)

如果满足以下任何条件,则行为是未定义的:

(C++11 前)
(C++11 起)

目录

[编辑] 参数

first, last - 定义待排序元素 范围 的迭代器对
policy - 要使用的 执行策略
comp - 比较函数对象(即满足 Compare 要求的对象),若第一参数“小于”(即在第二参数“之前排序”)第二参数则返回 ​true

比较函数的签名应等效于以下内容

bool cmp(const Type1& a, const Type2& b);

虽然签名不需具有 const&,但函数不可修改传递给它的对象,且必须能够接受 Type1Type2 类型(可能带 const)的所有值,无论其 值类别 (因此不允许 Type1&,除非 Type1 的移动等价于复制,也不允许 Type1(自 C++11 起))。
类型 Type1Type2 必须使得类型为 RandomIt 的对象可以被解引用,然后隐式转换为两者之一。​

类型要求
-
RandomIt 必须满足 LegacyRandomAccessIterator 的要求。
-
Compare 必须满足 Compare 的要求。

[编辑] 复杂度

给定 Nlast - first

1,2) 使用 operator<(直至 C++20)std::less{}(自 C++20 起) 进行 O(N·log(N)) 次比较。
3,4) O(N·log(N)) 次应用比较器 comp

[编辑] 异常

带有模板参数 ExecutionPolicy 的重载按如下方式报告错误

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

[编辑] 可能的实现

亦见 libstdc++libc++ 中的实现。

[编辑] 注意

LWG713 之前,复杂度要求允许 sort() 仅使用 快速排序 (Quicksort) 实现,这在最坏情况下可能需要 O(N2
)
次比较。

内省排序 (Introsort) 可以处理所有情况,具有 O(N·log(N)) 次比较(在平均情况下不产生额外开销),因此通常用于实现 sort()

libc++ 直到 LLVM 14 才实现修正后的时间复杂度要求。

[编辑] 示例

#include <algorithm>
#include <array>
#include <functional>
#include <iostream>
#include <string_view>
 
int main()
{
    std::array<int, 10> s{5, 7, 4, 2, 8, 6, 1, 9, 0, 3};
 
    auto print = [&s](std::string_view const rem)
    {
        for (auto a : s)
            std::cout << a << ' ';
        std::cout << ": " << rem << '\n';
    };
 
    std::sort(s.begin(), s.end());
    print("sorted with the default operator<");
 
    std::sort(s.begin(), s.end(), std::greater<int>());
    print("sorted with the standard library compare function object");
 
    struct
    {
        bool operator()(int a, int b) const { return a < b; }
    }
    customLess;
 
    std::sort(s.begin(), s.end(), customLess);
    print("sorted with a custom function object");
 
    std::sort(s.begin(), s.end(), [](int a, int b)
                                  {
                                      return a > b;
                                  });
    print("sorted with a lambda expression");
}

输出

0 1 2 3 4 5 6 7 8 9 : sorted with the default operator<
9 8 7 6 5 4 3 2 1 0 : sorted with the standard library compare function object
0 1 2 3 4 5 6 7 8 9 : sorted with a custom function object
9 8 7 6 5 4 3 2 1 0 : sorted with a lambda expression

[编辑] 缺陷报告

下列更改行为的缺陷报告追溯地应用于以前出版的 C++ 标准。

缺陷报告 应用于 发布时的行为 正确的行为
LWG 713 C++98 O(N·log(N)) 时间复杂度仅在平均情况下要求 在最坏情况下要求

[编辑] 另请参阅

对一个范围的前 N 个元素进行排序
(函数模板) [编辑]
对一个范围的元素进行排序,同时保留相等元素之间的顺序
(函数模板) [编辑]
将一个范围按升序排序
(算法函数对象)[编辑]