次の方法で共有


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 クラス

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