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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-24.cpp
  2. #include <iostream>
  3. #include <list>
  4. #if _MSC_VER > 1020   // if VC++ version is > 4.2
  5.    using namespace std;  // std c++ libs implemented in std
  6. #endif
  7. typedef list<char >  CHARLIST;
  8. void print_contents (CHARLIST  list);
  9. int main( ) 
  10. {
  11.    using namespace std;
  12.    list <int> c1, c2;
  13.    list <int>::iterator Iter;
  14.    c1.push_back( 10 );
  15.    c1.push_back( 20 );
  16.    c1.push_back( 30 );
  17.    c2.push_back( 40 );
  18.    c2.push_back( 50 );
  19.    c2.push_back( 60 );
  20.    cout << "c1 =";
  21.    for ( Iter = c1.begin( ); Iter != c1.end( ); Iter++ )
  22.       cout << " " << *Iter;
  23.    cout << endl;
  24.    Iter = c1.begin( );
  25.    Iter++;
  26.    c1.insert( Iter, 100 );
  27.    cout << "c1 =";
  28.    for ( Iter = c1.begin( ); Iter != c1.end( ); Iter++ )
  29.       cout << " " << *Iter;
  30.    cout << endl;
  31.    Iter = c1.begin( );
  32.    Iter++;
  33.    Iter++;
  34.    c1.insert( Iter, 2, 200 );
  35.    cout << "c1 =";
  36.    for ( Iter = c1.begin( ); Iter != c1.end( ); Iter++ )
  37.       cout << " " << *Iter;
  38.    cout << endl;
  39.    c1.insert( ++c1.begin( ), c2.begin( ),--c2.end( ) );
  40.    cout << "c1 =";
  41.    for ( Iter = c1.begin( ); Iter != c1.end( ); Iter++ )
  42.       cout << " " << *Iter;
  43.    cout << endl;
  44.    return 0;
  45. }