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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER5-23.cpp
  2. #pragma warning(disable: 4786)
  3. #include <map>
  4. #include <iostream>
  5. #include <string>
  6. typedef std::multimap<char, std::string> multimap_INT_STR ;
  7. typedef multimap_INT_STR::iterator multimap_ITERATOR ;
  8. typedef multimap_INT_STR::reverse_iterator multimap_REVERSE_ITERATOR ;
  9. typedef std::pair<char, std::string> PAIR_INT_STR ;
  10. template <class ITERATOR>
  11. void print_multimap_item(ITERATOR it) { std::cout << (*it).first << ", " << (*it).second << std::endl ;}
  12. int main()
  13. {
  14. //default constructor
  15. multimap_INT_STR c1 ;
  16. PAIR_INT_STR pairs[5] = { PAIR_INT_STR('a', std::string("ATL")),
  17. PAIR_INT_STR('a', std::string("ADO")),
  18. PAIR_INT_STR('b', std::string("BASIC")),
  19. PAIR_INT_STR('c', std::string("COM")),
  20. PAIR_INT_STR('d', std::string("DAO"))
  21.    };
  22. //construct from a range
  23. //multimap_INT_STR c2(pairs, pairs + 5) ;
  24. multimap_INT_STR c2;
  25. c2.insert(multimap_INT_STR::value_type('a', std::string("ATL")));
  26. c2.insert(multimap_INT_STR::value_type('a', std::string("ADO")));
  27. c2.insert(multimap_INT_STR::value_type('b', std::string("BASIC")));
  28. c2.insert(multimap_INT_STR::value_type('c', std::string("COM")));
  29. c2.insert(multimap_INT_STR::value_type('d', std::string("DAO")));
  30. //copy constructor
  31. multimap_INT_STR c3(c2) ;
  32. //empty
  33. if(c1.empty()){std::cout << "c1 is empty" << std::endl ; }
  34. else{ std::cout << "c1 is not empty" << std::endl ; }
  35. //begin, end
  36. std::cout << "c2 (using begin, end) = " << std::endl ;
  37. multimap_ITERATOR Iter1 ;
  38. for(Iter1 = c2.begin(); Iter1 != c2.end(); Iter1++){print_multimap_item(Iter1) ;}
  39. //rbegin, rend
  40. std::cout << "c2 (using rbegin, rend) = " << std::endl ;
  41. multimap_REVERSE_ITERATOR RevIter1 ;
  42. for(RevIter1 = c2.rbegin(); RevIter1 != c2.rend(); RevIter1++){ print_multimap_item(RevIter1) ;}
  43. //insert
  44. Iter1 = c1.insert(multimap_INT_STR::value_type('i', std::string("Internet"))) ;
  45. if(Iter1 != c1.end())
  46. { std::cout << "a pair of key/data was inserted in c1, *Iter1 = " ;
  47. print_multimap_item(Iter1); 
  48. }
  49. else {std::cout << "pair('i', "Internet") was not inserted in c1" << std::endl ;}
  50. //    c1.insert(pairs, pairs + 5) ;
  51. c1.insert(multimap_INT_STR::value_type('a', std::string("ATL")));
  52. c1.insert(multimap_INT_STR::value_type('a', std::string("ADO")));
  53. c1.insert(multimap_INT_STR::value_type('b', std::string("BASIC")));
  54. c1.insert(multimap_INT_STR::value_type('c', std::string("COM")));
  55. c1.insert(multimap_INT_STR::value_type('d', std::string("DAO")));
  56. c1.insert(c1.begin(), PAIR_INT_STR('j', std::string("java"))) ;
  57. //find
  58. std::cout << "Does c1 contain any pair with key = j?" << std::endl ;
  59. Iter1 = c1.find('j') ;
  60. if(Iter1 != c1.end()){std::cout << "c1 contains pair:" ;print_multimap_item(Iter1) ;}
  61. else { std::cout << "c1 does not contain any element with key = j" << std::endl ; }
  62. //max_size
  63. std::cout << "max elements which c1 can hold uisng current allocator = "<< c1.max_size() << std::endl ;
  64. //size
  65. std::cout << "number of elements in c1 = " << c1.size() << std::endl ;
  66. //swap
  67. c1.swap(c2) ;
  68. std::cout << "Last key/data pair in c1 = " ;
  69. print_multimap_item(c1.rbegin()) ;
  70. //clear
  71. c3.clear() ;
  72. std::cout << "after calling c3.clear(), number of elements in c3 = "<< c3.size() << std::endl ;
  73. //get_allocator
  74. multimap_INT_STR::allocator_type a1 = c3.get_allocator() ;
  75. //key_comp
  76. multimap_INT_STR::key_compare kc = c1.key_comp() ;
  77. std::cout << "use function object kc to find less of ('a', 'b')..." << std::endl ;
  78. if (kc('a', 'b') == true)std::cout << "kc('a', 'b') == true, which means 'a' < 'b'" << std::endl ;
  79. else std::cout << "kc('a', 'b') == false, which means 'a' > 'b'" << std::endl ;
  80. //value_comp
  81. multimap_INT_STR::value_compare vc = c1.value_comp() ;
  82. std::cout << "use function object vc to compare char-string pairs..."<< std::endl ;
  83. std::cout << "pairs[0] = (" << pairs[0].first << ", "<< pairs[0].second << ")" << std::endl ;
  84. std::cout << "pairs[1] = (" << pairs[1].first << ", " << pairs[1].second << ")" << std::endl ;
  85. if ( vc(pairs[0], pairs[1]) == true) std::cout << "pairs[0] < pairs[1]" << std::endl ;
  86. else std::cout << "pairs[0] > pairs[1]" << std::endl ;
  87. //upper_bound
  88. Iter1 = c2.upper_bound('c') ;
  89. std::cout << "first multimap element with key > 'c' = " ;
  90. print_multimap_item(Iter1) ;
  91. //lower_bound
  92. Iter1 = c2.lower_bound('c') ;
  93. std::cout << "first multimap element with key 'c' = " ;
  94. print_multimap_item(Iter1) ;
  95. //equal_range
  96. std::pair<multimap_ITERATOR, multimap_ITERATOR> pair2 = c2.equal_range('c') ;
  97. std::cout << "using c2.equal_range('c'),first multimap element with key > 'c' = " ;
  98. print_multimap_item(pair2.second) ;
  99. std::cout << "using c2.equal_range('c'), first multimap element with key = 'c' = " ;
  100. print_multimap_item(pair2.first) ;
  101. //count
  102. std::cout << "number of pairs in c2 with key 'a' = " << c2.count('a') << std::endl ;
  103. //erase
  104. c2.erase(c2.begin()) ;
  105. std::cout << "first key/data pair of c2 is: " ;
  106. print_multimap_item(c2.begin()) ;
  107. c1.erase(c1.begin(), c1.end()) ;
  108. std::cout << "after c1.erase(c1.begin(), c2.end()), number of elements in c1 = "<< c1.size() << std::endl ;
  109. if(c2.erase('j') == 1){std::cout << "element with key 'j' in c2 was erased" << std::endl ;}
  110. else{ std::cout << "c2 does not contain any element with key 'j'" << std::endl ;}
  111. return 0 ;
  112. }