stl_mult.h
上传用户:nizebo
上传日期:2022-05-14
资源大小:882k
文件大小:10k
源码类别:

STL

开发平台:

Visual C++

  1. /*
  2.  *
  3.  * Copyright (c) 1994
  4.  * Hewlett-Packard Company
  5.  *
  6.  * Permission to use, copy, modify, distribute and sell this software
  7.  * and its documentation for any purpose is hereby granted without fee,
  8.  * provided that the above copyright notice appear in all copies and
  9.  * that both that copyright notice and this permission notice appear
  10.  * in supporting documentation.  Hewlett-Packard Company makes no
  11.  * representations about the suitability of this software for any
  12.  * purpose.  It is provided "as is" without express or implied warranty.
  13.  *
  14.  *
  15.  * Copyright (c) 1996,1997
  16.  * Silicon Graphics Computer Systems, Inc.
  17.  *
  18.  * Permission to use, copy, modify, distribute and sell this software
  19.  * and its documentation for any purpose is hereby granted without fee,
  20.  * provided that the above copyright notice appear in all copies and
  21.  * that both that copyright notice and this permission notice appear
  22.  * in supporting documentation.  Silicon Graphics makes no
  23.  * representations about the suitability of this software for any
  24.  * purpose.  It is provided "as is" without express or implied warranty.
  25.  */
  26. /* NOTE: This is an internal header file, included by other STL headers.
  27.  *   You should not attempt to use it directly.
  28.  */
  29. #ifndef __SGI_STL_INTERNAL_MULTIMAP_H
  30. #define __SGI_STL_INTERNAL_MULTIMAP_H
  31. #include <concept_checks.h>
  32. __STL_BEGIN_NAMESPACE
  33. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  34. #pragma set woff 1174
  35. #pragma set woff 1375
  36. #endif
  37. // Forward declaration of operators < and ==, needed for friend declaration.
  38. template <class _Key, class _Tp, 
  39.           class _Compare __STL_DEPENDENT_DEFAULT_TMPL(less<_Key>),
  40.           class _Alloc = __STL_DEFAULT_ALLOCATOR(_Tp) >
  41. class multimap;
  42. template <class _Key, class _Tp, class _Compare, class _Alloc>
  43. inline bool operator==(const multimap<_Key,_Tp,_Compare,_Alloc>& __x, 
  44.                        const multimap<_Key,_Tp,_Compare,_Alloc>& __y);
  45. template <class _Key, class _Tp, class _Compare, class _Alloc>
  46. inline bool operator<(const multimap<_Key,_Tp,_Compare,_Alloc>& __x, 
  47.                       const multimap<_Key,_Tp,_Compare,_Alloc>& __y);
  48. template <class _Key, class _Tp, class _Compare, class _Alloc>
  49. class multimap {
  50.   // requirements:
  51.   __STL_CLASS_REQUIRES(_Tp, _Assignable);
  52.   __STL_CLASS_BINARY_FUNCTION_CHECK(_Compare, bool, _Key, _Key);
  53. public:
  54. // typedefs:
  55.   typedef _Key                  key_type;
  56.   typedef _Tp                   data_type;
  57.   typedef _Tp                   mapped_type;
  58.   typedef pair<const _Key, _Tp> value_type;
  59.   typedef _Compare              key_compare;
  60.   class value_compare : public binary_function<value_type, value_type, bool> {
  61.   friend class multimap<_Key,_Tp,_Compare,_Alloc>;
  62.   protected:
  63.     _Compare comp;
  64.     value_compare(_Compare __c) : comp(__c) {}
  65.   public:
  66.     bool operator()(const value_type& __x, const value_type& __y) const {
  67.       return comp(__x.first, __y.first);
  68.     }
  69.   };
  70. private:
  71.   typedef _Rb_tree<key_type, value_type, 
  72.                   _Select1st<value_type>, key_compare, _Alloc> _Rep_type;
  73.   _Rep_type _M_t;  // red-black tree representing multimap
  74. public:
  75.   typedef typename _Rep_type::pointer pointer;
  76.   typedef typename _Rep_type::const_pointer const_pointer;
  77.   typedef typename _Rep_type::reference reference;
  78.   typedef typename _Rep_type::const_reference const_reference;
  79.   typedef typename _Rep_type::iterator iterator;
  80.   typedef typename _Rep_type::const_iterator const_iterator; 
  81.   typedef typename _Rep_type::reverse_iterator reverse_iterator;
  82.   typedef typename _Rep_type::const_reverse_iterator const_reverse_iterator;
  83.   typedef typename _Rep_type::size_type size_type;
  84.   typedef typename _Rep_type::difference_type difference_type;
  85.   typedef typename _Rep_type::allocator_type allocator_type;
  86. // allocation/deallocation
  87.   multimap() : _M_t(_Compare(), allocator_type()) { }
  88.   explicit multimap(const _Compare& __comp,
  89.                     const allocator_type& __a = allocator_type())
  90.     : _M_t(__comp, __a) { }
  91. #ifdef __STL_MEMBER_TEMPLATES  
  92.   template <class _InputIterator>
  93.   multimap(_InputIterator __first, _InputIterator __last)
  94.     : _M_t(_Compare(), allocator_type())
  95.     { _M_t.insert_equal(__first, __last); }
  96.   template <class _InputIterator>
  97.   multimap(_InputIterator __first, _InputIterator __last,
  98.            const _Compare& __comp,
  99.            const allocator_type& __a = allocator_type())
  100.     : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
  101. #else
  102.   multimap(const value_type* __first, const value_type* __last)
  103.     : _M_t(_Compare(), allocator_type())
  104.     { _M_t.insert_equal(__first, __last); }
  105.   multimap(const value_type* __first, const value_type* __last,
  106.            const _Compare& __comp,
  107.            const allocator_type& __a = allocator_type())
  108.     : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
  109.   multimap(const_iterator __first, const_iterator __last)
  110.     : _M_t(_Compare(), allocator_type())
  111.     { _M_t.insert_equal(__first, __last); }
  112.   multimap(const_iterator __first, const_iterator __last,
  113.            const _Compare& __comp,
  114.            const allocator_type& __a = allocator_type())
  115.     : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
  116. #endif /* __STL_MEMBER_TEMPLATES */
  117.   multimap(const multimap<_Key,_Tp,_Compare,_Alloc>& __x) : _M_t(__x._M_t) { }
  118.   multimap<_Key,_Tp,_Compare,_Alloc>&
  119.   operator=(const multimap<_Key,_Tp,_Compare,_Alloc>& __x) {
  120.     _M_t = __x._M_t;
  121.     return *this; 
  122.   }
  123.   // accessors:
  124.   key_compare key_comp() const { return _M_t.key_comp(); }
  125.   value_compare value_comp() const { return value_compare(_M_t.key_comp()); }
  126.   allocator_type get_allocator() const { return _M_t.get_allocator(); }
  127.   iterator begin() { return _M_t.begin(); }
  128.   const_iterator begin() const { return _M_t.begin(); }
  129.   iterator end() { return _M_t.end(); }
  130.   const_iterator end() const { return _M_t.end(); }
  131.   reverse_iterator rbegin() { return _M_t.rbegin(); }
  132.   const_reverse_iterator rbegin() const { return _M_t.rbegin(); }
  133.   reverse_iterator rend() { return _M_t.rend(); }
  134.   const_reverse_iterator rend() const { return _M_t.rend(); }
  135.   bool empty() const { return _M_t.empty(); }
  136.   size_type size() const { return _M_t.size(); }
  137.   size_type max_size() const { return _M_t.max_size(); }
  138.   void swap(multimap<_Key,_Tp,_Compare,_Alloc>& __x) { _M_t.swap(__x._M_t); }
  139.   // insert/erase
  140.   iterator insert(const value_type& __x) { return _M_t.insert_equal(__x); }
  141.   iterator insert(iterator __position, const value_type& __x) {
  142.     return _M_t.insert_equal(__position, __x);
  143.   }
  144. #ifdef __STL_MEMBER_TEMPLATES  
  145.   template <class _InputIterator>
  146.   void insert(_InputIterator __first, _InputIterator __last) {
  147.     _M_t.insert_equal(__first, __last);
  148.   }
  149. #else
  150.   void insert(const value_type* __first, const value_type* __last) {
  151.     _M_t.insert_equal(__first, __last);
  152.   }
  153.   void insert(const_iterator __first, const_iterator __last) {
  154.     _M_t.insert_equal(__first, __last);
  155.   }
  156. #endif /* __STL_MEMBER_TEMPLATES */
  157.   void erase(iterator __position) { _M_t.erase(__position); }
  158.   size_type erase(const key_type& __x) { return _M_t.erase(__x); }
  159.   void erase(iterator __first, iterator __last)
  160.     { _M_t.erase(__first, __last); }
  161.   void clear() { _M_t.clear(); }
  162.   // multimap operations:
  163.   iterator find(const key_type& __x) { return _M_t.find(__x); }
  164.   const_iterator find(const key_type& __x) const { return _M_t.find(__x); }
  165.   size_type count(const key_type& __x) const { return _M_t.count(__x); }
  166.   iterator lower_bound(const key_type& __x) {return _M_t.lower_bound(__x); }
  167.   const_iterator lower_bound(const key_type& __x) const {
  168.     return _M_t.lower_bound(__x); 
  169.   }
  170.   iterator upper_bound(const key_type& __x) {return _M_t.upper_bound(__x); }
  171.   const_iterator upper_bound(const key_type& __x) const {
  172.     return _M_t.upper_bound(__x); 
  173.   }
  174.    pair<iterator,iterator> equal_range(const key_type& __x) {
  175.     return _M_t.equal_range(__x);
  176.   }
  177.   pair<const_iterator,const_iterator> equal_range(const key_type& __x) const {
  178.     return _M_t.equal_range(__x);
  179.   }
  180. #ifdef __STL_TEMPLATE_FRIENDS 
  181.   template <class _K1, class _T1, class _C1, class _A1>
  182.   friend bool operator== (const multimap<_K1, _T1, _C1, _A1>&,
  183.                           const multimap<_K1, _T1, _C1, _A1>&);
  184.   template <class _K1, class _T1, class _C1, class _A1>
  185.   friend bool operator< (const multimap<_K1, _T1, _C1, _A1>&,
  186.                          const multimap<_K1, _T1, _C1, _A1>&);
  187. #else /* __STL_TEMPLATE_FRIENDS */
  188.   friend bool __STD_QUALIFIER
  189.   operator== __STL_NULL_TMPL_ARGS (const multimap&, const multimap&);
  190.   friend bool __STD_QUALIFIER
  191.   operator< __STL_NULL_TMPL_ARGS (const multimap&, const multimap&);
  192. #endif /* __STL_TEMPLATE_FRIENDS */
  193. };
  194. template <class _Key, class _Tp, class _Compare, class _Alloc>
  195. inline bool operator==(const multimap<_Key,_Tp,_Compare,_Alloc>& __x, 
  196.                        const multimap<_Key,_Tp,_Compare,_Alloc>& __y) {
  197.   return __x._M_t == __y._M_t;
  198. }
  199. template <class _Key, class _Tp, class _Compare, class _Alloc>
  200. inline bool operator<(const multimap<_Key,_Tp,_Compare,_Alloc>& __x, 
  201.                       const multimap<_Key,_Tp,_Compare,_Alloc>& __y) {
  202.   return __x._M_t < __y._M_t;
  203. }
  204. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  205. template <class _Key, class _Tp, class _Compare, class _Alloc>
  206. inline bool operator!=(const multimap<_Key,_Tp,_Compare,_Alloc>& __x, 
  207.                        const multimap<_Key,_Tp,_Compare,_Alloc>& __y) {
  208.   return !(__x == __y);
  209. }
  210. template <class _Key, class _Tp, class _Compare, class _Alloc>
  211. inline bool operator>(const multimap<_Key,_Tp,_Compare,_Alloc>& __x, 
  212.                       const multimap<_Key,_Tp,_Compare,_Alloc>& __y) {
  213.   return __y < __x;
  214. }
  215. template <class _Key, class _Tp, class _Compare, class _Alloc>
  216. inline bool operator<=(const multimap<_Key,_Tp,_Compare,_Alloc>& __x, 
  217.                        const multimap<_Key,_Tp,_Compare,_Alloc>& __y) {
  218.   return !(__y < __x);
  219. }
  220. template <class _Key, class _Tp, class _Compare, class _Alloc>
  221. inline bool operator>=(const multimap<_Key,_Tp,_Compare,_Alloc>& __x, 
  222.                        const multimap<_Key,_Tp,_Compare,_Alloc>& __y) {
  223.   return !(__x < __y);
  224. }
  225. template <class _Key, class _Tp, class _Compare, class _Alloc>
  226. inline void swap(multimap<_Key,_Tp,_Compare,_Alloc>& __x, 
  227.                  multimap<_Key,_Tp,_Compare,_Alloc>& __y) {
  228.   __x.swap(__y);
  229. }
  230. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  231. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  232. #pragma reset woff 1174
  233. #pragma reset woff 1375
  234. #endif
  235. __STL_END_NAMESPACE
  236. #endif /* __SGI_STL_INTERNAL_MULTIMAP_H */
  237. // Local Variables:
  238. // mode:C++
  239. // End: