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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-22.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.    using namespace std;
  10.    list <int> c1, c2, c3;
  11.    list <int>::iterator c1_Iter;
  12.    c1.push_back( 1 );
  13.    c1.push_back( 2 );
  14.    c1.push_back( 3 );
  15.    c2.push_back( 10 );
  16.    c2.push_back( 20 );
  17.    c3.push_back( 100 );
  18.    cout << "The original list c1 is:";
  19.    for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
  20.       cout << " " << *c1_Iter;
  21.    cout << endl;
  22.    c1.swap( c2 );
  23.    cout << "After swapping with c2, list c1 is:";
  24.    for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
  25.       cout << " " << *c1_Iter;
  26.    cout << endl;
  27.    swap( c1,c3 );
  28.    cout << "After swapping with c3, list c1 is:";
  29.    for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
  30.       cout << " " << *c1_Iter;
  31.    cout << endl;
  32.    return 0;
  33. }