CHAPTER8-34.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:1k
源码类别:

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-34.cpp
  2. #include <list>
  3. #include <iostream>
  4. #if _MSC_VER > 1020   // if VC++ version is > 4.2
  5.    using namespace std;  // std c++ libs implemented in std
  6. #endif
  7. int main( ) 
  8. {
  9.    list <int> c1, c2, c3;
  10.    list <int>::iterator c1_Iter, c2_Iter, c3_Iter;
  11.    c1.push_back( 3 );
  12.    c1.push_back( 6 );
  13.    c2.push_back( 2 );
  14.    c2.push_back( 4 );
  15.    c3.push_back( 5 );
  16.    c3.push_back( 1 );
  17.    cout << "c1 =";
  18.    for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
  19.       cout << " " << *c1_Iter;
  20.    cout << endl;
  21.    cout << "c2 =";
  22.    for ( c2_Iter = c2.begin( ); c2_Iter != c2.end( ); c2_Iter++ )
  23.       cout << " " << *c2_Iter;
  24.    cout << endl;
  25.    c2.merge( c1 );  // Merge c1 into c2 in (default) ascending order
  26.    c2.sort( greater<int>( ) );
  27.    cout << "After merging c1 with c2 and sorting with >: c2 =";
  28.    for ( c2_Iter = c2.begin( ); c2_Iter != c2.end( ); c2_Iter++ )
  29.       cout << " " << *c2_Iter;
  30.    cout << endl;
  31.    cout << "c3 =";
  32.    for ( c3_Iter = c3.begin( ); c3_Iter != c3.end( ); c3_Iter++ )
  33.       cout << " " << *c3_Iter;
  34.    cout << endl;
  35.    c2.merge( c3, greater<int>( ) );
  36.    cout << "After merging c3 with c2 according to the '>' comparison relation: c2 =";
  37.    for ( c2_Iter = c2.begin( ); c2_Iter != c2.end( ); c2_Iter++ )
  38.       cout << " " << *c2_Iter;
  39.    cout << endl;
  40.    return 0;
  41. }