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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-16.cpp
  2. #include <list>
  3. #if _MSC_VER > 1020   // if VC++ version is > 4.2
  4.    using namespace std;  // std c++ libs implemented in std
  5. #endif
  6. #include <iostream>
  7. int main( ) 
  8. {
  9.    using namespace std;
  10.    list <int> c1;
  11.    list <int>::iterator c1_Iter;
  12.    list <int>::reverse_iterator c1_rIter;
  13.    // If the following line replaced the line above, *c1_rIter = 40;
  14.    // (below) would be an error
  15.    //list <int>::const_reverse_iterator c1_rIter;
  16.    c1.push_back( 10 );
  17.    c1.push_back( 20 );
  18.    c1.push_back( 30 );
  19.    c1_rIter = c1.rbegin( );
  20.    cout << "The last element in the list is " << *c1_rIter << "." << endl;
  21.    cout << "The list is:";
  22.    for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
  23.       cout << " " << *c1_Iter;
  24.    cout << endl;
  25.    // rbegin can be used to start an iteration through a list in reverse order
  26.    cout << "The reversed list is:";
  27.    for ( c1_rIter = c1.rbegin( ); c1_rIter != c1.rend( ); c1_rIter++ )
  28.       cout << " " << *c1_rIter;
  29.    cout << endl;
  30.    c1_rIter = c1.rbegin( );
  31.    *c1_rIter = 40;
  32.    cout << "The last element in the list is now " << *c1_rIter << "." << endl;
  33. }