命名空间
变体
操作

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

来自 cppreference.com
< cpp‎ | 容器‎ | 单向链表
 
 
 
 
void sort();
(1) (自 C++11 起)
template< class Compare >
void sort( Compare comp );
(2) (自 C++11 起)

对元素进行排序并保持等效元素的顺序。任何引用或迭代器都不会失效。

1) 元素使用 operator< 进行比较。
2) 元素使用 comp 进行比较。

如果抛出异常,则 *this 中的元素顺序是不确定的。

内容

[编辑] 参数

comp - 比较函数对象(即满足 Compare 要求的对象),如果第一个参数小于(即在排序中排在第二个参数之前),则返回 ​true

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

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

虽然签名不需要具有 const&,但该函数不得修改传递给它的对象,并且必须能够接受类型(可能是 const)Type1Type2 的所有值,无论值类别是什么(因此,Type1& 不允许,除非对于 Type1,移动等效于复制(自 C++11 起))。
类型 Type1Type2 必须是能够将类型为 forward_list<T,Allocator>::const_iterator 的对象解除引用,然后隐式转换为它们两者。​

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

[编辑] 返回值

(无)

[编辑] 复杂度

假设 Nstd::distance(begin(), end())

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

[编辑] 注释

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

[编辑] 示例

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

输出

initially:  8 7 5 9 0 1 3 2 6 4
ascending:  0 1 2 3 4 5 6 7 8 9
descending: 9 8 7 6 5 4 3 2 1 0

[编辑] 另请参阅

反转元素的顺序
(公共成员函数) [编辑]