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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER10-18.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>::iterator m1_pIter, m2_pIter;
  10.    multimap <int, int> m1, m2;
  11.    typedef pair <int, int> Int_Pair;
  12.    m1.insert ( Int_Pair ( 1, 10 ) );
  13.    m1.insert ( Int_Pair ( 2, 20 ) );
  14.    m1.insert ( Int_Pair ( 3, 30 ) );
  15.    cout << "The original key values of m1 =";
  16.    for ( m1_pIter = m1.begin( ); m1_pIter != m1.end( ); m1_pIter++ )
  17.       cout << " " << m1_pIter -> first;
  18.    cout << "." << endl;
  19.    cout << "The original mapped values of m1 =";
  20.    for ( m1_pIter = m1.begin( ); m1_pIter != m1.end( ); m1_pIter++ )
  21.       cout << " " << m1_pIter -> second;
  22.    cout << "." << endl;
  23.    m1.insert ( Int_Pair ( 1, 10 ) );
  24.    // The hint version of insert
  25.    m1.insert( --m1.end( ), Int_Pair ( 4, 40 )  );
  26.    cout << "After the insertions, the key values of m1 =";
  27.    for ( m1_pIter = m1.begin( ); m1_pIter != m1.end( ); m1_pIter++ )
  28.       cout << " " << m1_pIter -> first;
  29.    cout << "," << " and the mapped values of m1 =";
  30.    for ( m1_pIter = m1.begin( ); m1_pIter != m1.end( ); m1_pIter++ )
  31.       cout << " " << m1_pIter -> second;
  32.    cout << "." << endl;
  33.    m2.insert ( Int_Pair ( 10, 100 ) );
  34.    cout << "After the insertions, the key values of m2 =";
  35.    for ( m2_pIter = m2.begin( ); m2_pIter != m2.end( ); m2_pIter++ )
  36.       cout << " " << m2_pIter -> first;
  37.    cout << "," << endl;
  38.    cout << " and the mapped values of m2 =";
  39.    for ( m2_pIter = m2.begin( ); m2_pIter != m2.end( ); m2_pIter++ )
  40.       cout << " " << m2_pIter -> second;
  41.    cout << "." << endl;
  42. }