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