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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER10-27.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. int main( )
  8. {
  9.    map <int, int> m1;
  10.    map <int, int> :: const_iterator m1_AcIter, m1_RcIter;
  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.    m1_RcIter = m1.find( 2 );
  16.    cout << "The element of map m1 with a key of 2 is: "<< m1_RcIter -> second << "." << endl;
  17.    // If no match is found for the key, end( ) is returned
  18.    m1_RcIter = m1.find( 4 );
  19.    if ( m1_RcIter == m1.end( ) )
  20.       cout << "The map m1 doesn't have an element "<< "with a key of 4." << endl;
  21.    else cout << "The element of map m1 with a key of 4 is: "<< m1_RcIter -> second << "." << endl;
  22.    // The element at a specific location in the map can be found 
  23.    // using a dereferenced iterator addressing the location
  24.    m1_AcIter = m1.end( );
  25.    m1_AcIter--;
  26.    m1_RcIter = m1.find( m1_AcIter -> first );
  27.    cout << "The element of m1 with a key matching "
  28.         << "that of the last element is: "<< m1_RcIter -> second << "." << endl;
  29. }