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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-25.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;
  11.    list <int>::iterator Iter;
  12.    c1.push_back( 10 );
  13.    c1.push_back( 20 );
  14.    c1.push_back( 30 );
  15.    c1.push_back( 40 );
  16.    c1.push_back( 50 );
  17.    cout << "The initial list is:";
  18.    for ( Iter = c1.begin( ); Iter != c1.end( ); Iter++ )
  19.       cout << " " << *Iter;
  20.    cout << endl;
  21.    c1.erase( c1.begin( ) );
  22.    cout << "After erasing the first element, the list becomes:";
  23.    for ( Iter = c1.begin( ); Iter != c1.end( ); Iter++ )
  24.       cout << " " << *Iter;
  25.    cout << endl;
  26.    Iter = c1.begin( );
  27.    Iter++;
  28.    c1.erase( Iter, c1.end( ) );
  29.    cout << "After erasing all elements but the first, the list becomes: ";
  30.    for (Iter = c1.begin( ); Iter != c1.end( ); Iter++ )
  31.       cout << " " << *Iter;
  32.    cout << endl;
  33.    return 0;
  34. }