std::list<T,Allocator>::sort

来自cppreference.com
< cpp‎ | container‎ | list

 
 
 
 
void sort();
(1)
template< class Compare >
void sort( Compare comp );
(2)

排序元素,并保持等价元素的顺序。迭代器和引用不会失效。

1)operator< 比较元素。
2)comp 比较元素。

如果抛出了异常,那么 *this 中元素的顺序未指定。

Parameters

comp - 比较函数对象(即满足比较 (Compare) 概念的对象),在第一参数小于(即 序于)第二参数时返回 ​true

比较函数的签名应等价于如下:

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

虽然签名不必有 const&,函数也不能修改传递给它的对象,而且必须接受(可为 const 的)类型 Type1Type2 的值,无关乎值类别(从而不允许 Type1& ,也不允许 Type1,除非 Type1 的移动等价于复制 (C++11 起))。
类型 Type1Type2 必须使得 list<T,Allocator>::const_iterator 类型的对象能在解引用后隐式转换到这两个类型。 ​

类型要求
-
Compare 必须符合比较 (Compare) 的要求。

返回值

(无)

复杂度

给定 Nstd::distance(begin(), end())

1) 应用大约 N·log(N)operator< 进行比较。
2) 应用大约 N·log(N) 次比较函数 comp

注意

std::sort 要求随机访问迭代器,因此不能用于 list。此函数与 std::sort 的区别在于,它不要求 list 的元素类型可交换,保留所有迭代器的值,并进行稳定排序。

示例

#include <iostream>
#include <functional>
#include <list>
 
std::ostream& operator<<(std::ostream& ostr, const std::list<int>& list)
{
    for (const int i : list)
        ostr << ' ' << i;
    return ostr;
}
 
int main()
{
    std::list<int> list{8, 7, 5, 9, 0, 1, 3, 2, 6, 4};
    std::cout << "初始:" << list << '\n';
 
    list.sort();
    std::cout << "升序:" << list << '\n';
 
    list.sort(std::greater<int>());
    std::cout << "降序:" << list << '\n';
}

输出:

初始: 8 7 5 9 0 1 3 2 6 4
升序: 0 1 2 3 4 5 6 7 8 9
降序: 9 8 7 6 5 4 3 2 1 0

缺陷报告

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

缺陷报告 应用于 出版时的行为 正确行为
LWG 1207 C++98 不明确迭代器和/或引用是否会失效 保持有效

参阅

将该链表的所有元素的顺序反转
(公开成员函数)