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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-10.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. int main( ) 
  8. {
  9.    list <int> c1;
  10.    list <int>::iterator c1_Iter;
  11.    c1.push_back( 10 );
  12.    c1.push_back( 20 );
  13.    c1.push_back( 30 );
  14.    cout << "c1 =";
  15.    for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
  16.       cout << " " << *c1_Iter;
  17.    cout << endl;
  18.    c1.reverse( );
  19.    cout << "Reversed c1 =";
  20.    for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
  21.       cout << " " << *c1_Iter;
  22.    cout << endl;
  23.    return 0;
  24. }