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

STL

开发平台:

C/C++

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