次の方法で共有


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;
}
  

必要条件

ヘッダー: <list>

名前空間: std

参照

関連項目

list Class

標準テンプレート ライブラリ