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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER10-21.cpp
  2. #include <map>
  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. void main( )
  8. {
  9.    multimap <int, int> m1, m2, m3;
  10.    multimap <int, int> :: iterator pIter, Iter1, Iter2;
  11.    int i, n;
  12.    typedef pair <int, int> Int_Pair;
  13.    for ( i = 1 ; i < 5 ; i++ )
  14.    {
  15.       m1.insert ( Int_Pair ( i, i )  );
  16.       m2.insert ( Int_Pair ( i, i*i )  );
  17.       m3.insert ( Int_Pair ( i, i-1 )  );
  18.    }
  19.    // The 1st member function removes an element at a given position
  20.    Iter1 = ++m1.begin( );
  21.    m1.erase( Iter1 );
  22.    cout << "After the 2nd element is deleted, "<< "the multimap ms1 is:" ;
  23.    for ( pIter = m1.begin( ) ; pIter != m1.end( ) ; pIter++ )
  24.       cout << " " << pIter -> second;
  25.    cout << "." << endl;
  26.    // The 2nd member function removes elements in the range [_First, _Last)
  27.    Iter1 = ++m2.begin( );
  28.    Iter2 = --m2.end( );
  29.    m2.erase( Iter1, Iter2 );
  30.    cout << "After the middle two elements are deleted, "<< "the multimap m2 is:" ;
  31.    for ( pIter = m2.begin( ) ; pIter != m2.end( ) ; pIter++ )
  32.       cout << " " << pIter -> second;
  33.    cout << "." << endl;
  34.    // The 3rd member function removes elements with a given _Key
  35.    m3.insert( Int_Pair ( 2, 5 ) );
  36.    n = m3.erase( 2 );
  37.    cout << "After the element with a key of 2 is deleted,n"<< "the multimap m3 is:" ;
  38.    for ( pIter = m3.begin( ) ; pIter != m3.end( ) ; pIter++ )
  39.       cout << " " << pIter -> second;
  40.    cout << "." << endl;
  41.    // The 3rd member function returns the number of elements removed
  42.    cout << "The number of elements removed from m3 is: "<< n << "." << endl;
  43.    // The dereferenced iterator can also be used to specify a key
  44.    Iter1 = ++m3.begin( );
  45.    m3.erase( Iter1 );
  46.    cout << "After another element with a key equal to that"<< endl;
  47.    cout  << "of the 2nd element is deleted, "<< "the multimap m3 is:" ;
  48.    for ( pIter = m3.begin( ) ; pIter != m3.end( ) ; pIter++ )
  49.       cout << " " << pIter -> second;
  50.    cout << "." << endl;
  51. }