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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER7-9.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. {   deque <int> c1;
  9.    deque <int>::iterator c1_Iter;
  10.    c1.push_back( 10 );
  11.    c1.push_back( 20 );
  12.    c1.push_back( 30 );
  13.    c1_Iter = c1.end( ); //指向c1变量中的最后一个元素的迭代器
  14.    c1_Iter--;
  15.    cout << "The last integer of c1 is " << *c1_Iter << endl;
  16.    c1_Iter--;
  17.    *c1_Iter = 400;
  18.    cout << "The new next-to-last integer of c1 is " << *c1_Iter << endl;
  19.    // If a const iterator had been declared instead with the line:
  20.    // deque <int>::const_iterator c1_Iter;
  21.    // an error would have resulted when inserting the 400
  22.    cout << "The deque is now:";
  23.    for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
  24.       cout << " " << *c1_Iter;
  25.    return 0;
  26. }