list::sort

使用升序排序或有关其他用户指定的排序来排列列表元素。

void sort( ); 
template<class Traits>  
   void sort( 
      Traits _Comp 
   );

参数

  • _Comp
    比较运算符使用了为排序顺序的元素。

备注

默认情况下第一个成员函数将元素以升序排序放置。

成员模板函数根据类 Traits中的用户指定的比较操作 _Comp调整元素。

示例

// list_sort.cpp
// compile with: /EHsc
#include <list>
#include <iostream>

int main( )
{
   using namespace std;
   list <int> c1;
   list <int>::iterator c1_Iter;
   
   c1.push_back( 20 );
   c1.push_back( 10 );
   c1.push_back( 30 );

   cout << "Before sorting: c1 =";
   for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
      cout << " " << *c1_Iter;
   cout << endl;

   c1.sort( );
   cout << "After sorting c1 =";
   for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
      cout << " " << *c1_Iter;
   cout << endl;

   c1.sort( greater<int>( ) );
   cout << "After sorting with 'greater than' operation, c1 =";
   for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
      cout << " " << *c1_Iter;
   cout << endl;
}
  

要求

标头: <列表>

命名空间: std

请参见

参考

list 类

标准模板库