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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-35.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 c1_Iter, c2_Iter;
  12.    c1.push_back( 5 );
  13.    c1.push_back( 100 );
  14.    c1.push_back( 5 );
  15.    c1.push_back( 200 );
  16.    c1.push_back( 5 );
  17.    c1.push_back( 300 );
  18.    cout << "The initial list is c1 =";
  19.    for ( c1_Iter = c1.begin( ); c1_Iter != c1.end( ); c1_Iter++ )
  20.       cout << " " << *c1_Iter;
  21.    cout << endl;
  22.    list <int> c2 = c1;
  23.    c2.remove( 5 );
  24.    cout << "After removing elements with value 5, the list becomes c2 =";
  25.    for ( c2_Iter = c2.begin( ); c2_Iter != c2.end( ); c2_Iter++ )
  26.       cout << " " << *c2_Iter;
  27.    cout << endl;
  28.    return 0;
  29. }