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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER10-25.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.    map <int, int> m1;
  10.    int i;
  11.    typedef pair <int, int> Int_Pair;
  12.    m1.insert ( Int_Pair ( 1, 1 ) );
  13.    m1.insert ( Int_Pair ( 2, 1 ) );
  14.    m1.insert ( Int_Pair ( 1, 4 ) );
  15.    m1.insert ( Int_Pair ( 2, 1 ) );
  16.    // Keys must be unique in map, so duplicates are ignored
  17.    i = m1.count( 1 );
  18.    cout << "The number of elements in m1 with a sort key of 1 is: "<< i << "." << endl;
  19.    i = m1.count( 2 );
  20.    cout << "The number of elements in m1 with a sort key of 2 is: "<< i << "." << endl;
  21.    i = m1.count( 3 );
  22.    cout << "The number of elements in m1 with a sort key of 3 is: "<< i << "." << endl;
  23. }