📜  C++ STL中的std :: list :: sort

📅  最后修改于: 2021-05-30 11:42:30             🧑  作者: Mango

列表是C++中用于以非连续方式存储数据的容器。通常,数组和向量本质上是连续的,因此,与列表中的插入和删除选项相比,插入和删除操作的成本更高。

清单:: sort()

sort()函数用于通过更改容器的位置来对容器的元素进行排序。

句法 :

listname.sort()
Parameters :
No parameters are passed.
Result :
The elements of the container
are sorted in ascending order.

例子:

Input  : mylist{1, 5, 3, 2, 4};
         mylist.sort();
Output : 1, 2, 3, 4, 5

Input  : mylist{"hi", "bye", "thanks"};
         mylist.sort();
Output : bye, hi, thanks

错误和异常

1.它具有基本的无异常抛出保证。
2.传递参数时显示错误。

// SORTING INTEGERS
// CPP program to illustrate
// Implementation of sort() function
#include 
#include 
using namespace std;
  
int main()
{
    // list declaration of integer type
    list mylist{ 1, 5, 3, 2, 4 };
  
    // sort function
    mylist.sort();
  
    // printing the list after sort
    for (auto it = mylist.begin(); it != mylist.end(); ++it)
        cout << ' ' << *it;
    return 0;
}

输出:

1 2 3 4 5
// SORTING STRINGS
// CPP program to illustrate
// Implementation of sort() function
#include 
#include 
#include 
using namespace std;
  
int main()
{
    // list declaration of string type
    list mylist{ "hi", "bye", "thanks" };
  
    // sort function
    mylist.sort();
  
    // printing the list after sort
    for (auto it = mylist.begin(); it != mylist.end(); ++it)
        cout << ' ' << *it;
    return 0;
}

输出:

bye hi thanks

时间复杂度: O(nlogn)

相似函数:在C++ STL中排序

要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程”