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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER10-37.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, less<int> > m1;
  10.    map <int, int, less<int> >::value_compare vc1 = m1.value_comp( );
  11.    pair< map<int,int>::iterator, bool > pr1, pr2;
  12.    
  13.    pr1= m1.insert ( map <int, int> :: value_type ( 1, 10 ) );
  14.    pr2= m1.insert ( map <int, int> :: value_type ( 2, 5 ) );
  15.    if( vc1( *pr1.first, *pr2.first ) == true )   
  16.    {      cout << "The element ( 1,10 ) precedes the element ( 2,5 )."<< endl;  }
  17.    else   
  18.    {      cout << "The element ( 1,10 ) does not precede the element ( 2,5 )."
  19.            << endl;
  20.    }
  21.    if(vc1( *pr2.first, *pr1.first ) == true )
  22.    {   cout << "The element ( 2,5 ) precedes the element ( 1,10 )."<< endl;   }
  23.    else   
  24.    { cout << "The element ( 2,5 ) does not precede the element ( 1,10 )."
  25.            << endl;   }
  26. }