📜  C++ STL中的std :: forward_list :: sort()

📅  最后修改于: 2021-05-30 04:12:40             🧑  作者: Mango

STL中的转发列表实现单链列表。从C++ 11引入的前向列表在插入,删除和移动操作(如排序)方面比其他容器有用,并且允许时间常数插入和删除元素。它与列表的不同之处在于前向列表会跟踪对象的位置只有list的下一个元素同时跟踪下一个和上一个元素。

forward_list :: sort()

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

句法 :

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

例子:

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

Input  : myflist{"This","is","Geeksforgeeks"};
         myflist.sort();
Output : Geekforgeeks, This, is

错误和异常

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

// SORTING INTEGERS
// CPP program to illustrate
// Implementation of sort() function
#include 
#include 
using namespace std;
  
int main()
{
    // forward list declaration of integer type
    forward_list myflist{1, 5, 3, 2, 4};
      
    // sort function
    myflist.sort();
      
    // printing the forward list after sort
    for (auto it = myflist.begin(); it != myflist.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()
{
    // forward list declaration of string type
    forward_list myflist{"This","is","Geeksforgeeks"};
      
    // sort function
    myflist.sort();
      
    // printing the forward list after sort
    for (auto it = myflist.begin(); it != myflist.end(); ++it)
        cout << ' ' << *it;
    return 0;
}

输出:

Geeksforgeeks This is

时间复杂度: O(nlogn)

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