stl_multimap.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:8k
源码类别:

3D图形编程

开发平台:

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. __STL_BEGIN_NAMESPACE
  32. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  33. #pragma set woff 1174
  34. #pragma set woff 1375
  35. #endif
  36. #ifndef __STL_LIMITED_DEFAULT_TEMPLATES
  37. template <class _Key, class _T, class _Compare = less<_Key>,
  38.           class _Alloc = __STL_DEFAULT_ALLOCATOR(_T) >
  39. #else
  40. template <class _Key, class _T, class _Compare,
  41.           class _Alloc = __STL_DEFAULT_ALLOCATOR(_T) >
  42. #endif
  43. class multimap {
  44. public:
  45. // typedefs:
  46.   typedef _Key                 key_type;
  47.   typedef _T                   data_type;
  48.   typedef _T                   mapped_type;
  49.   typedef pair<const _Key, _T> value_type;
  50.   typedef _Compare             key_compare;
  51.   class value_compare : public binary_function<value_type, value_type, bool> {
  52.   friend class multimap<_Key,_T,_Compare,_Alloc>;
  53.   protected:
  54.     _Compare _M_comp;
  55.     value_compare(_Compare __c) : _M_comp(__c) {}
  56.   public:
  57.     bool operator()(const value_type& __x, const value_type& __y) const {
  58.       return _M_comp(__x.first, __y.first);
  59.     }
  60.   };
  61. private:
  62.   typedef _Rb_tree<key_type, value_type, 
  63.                   _Select1st<value_type>, key_compare, _Alloc> _Rep_type;
  64.   _Rep_type _M_t;  // red-black tree representing multimap
  65. public:
  66.   typedef typename _Rep_type::pointer pointer;
  67.   typedef typename _Rep_type::const_pointer const_pointer;
  68.   typedef typename _Rep_type::reference reference;
  69.   typedef typename _Rep_type::const_reference const_reference;
  70.   typedef typename _Rep_type::iterator iterator;
  71.   typedef typename _Rep_type::const_iterator const_iterator; 
  72.   typedef typename _Rep_type::reverse_iterator reverse_iterator;
  73.   typedef typename _Rep_type::const_reverse_iterator const_reverse_iterator;
  74.   typedef typename _Rep_type::size_type size_type;
  75.   typedef typename _Rep_type::difference_type difference_type;
  76.   typedef typename _Rep_type::allocator_type allocator_type;
  77. // allocation/deallocation
  78.   multimap() : _M_t(_Compare(), allocator_type()) { }
  79.   explicit multimap(const _Compare& __comp,
  80.                     const allocator_type& __a = allocator_type())
  81.     : _M_t(__comp, __a) { }
  82. #ifdef __STL_MEMBER_TEMPLATES  
  83.   template <class _InputIterator>
  84.   multimap(_InputIterator __first, _InputIterator __last)
  85.     : _M_t(_Compare(), allocator_type())
  86.     { _M_t.insert_equal(__first, __last); }
  87.   template <class _InputIterator>
  88.   multimap(_InputIterator __first, _InputIterator __last,
  89.            const _Compare& __comp,
  90.            const allocator_type& __a = allocator_type())
  91.     : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
  92. #else
  93.   multimap(const value_type* __first, const value_type* __last)
  94.     : _M_t(_Compare(), allocator_type())
  95.     { _M_t.insert_equal(__first, __last); }
  96.   multimap(const value_type* __first, const value_type* __last,
  97.            const _Compare& __comp,
  98.            const allocator_type& __a = allocator_type())
  99.     : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
  100.   multimap(const_iterator __first, const_iterator __last)
  101.     : _M_t(_Compare(), allocator_type())
  102.     { _M_t.insert_equal(__first, __last); }
  103.   multimap(const_iterator __first, const_iterator __last,
  104.            const _Compare& __comp,
  105.            const allocator_type& __a = allocator_type())
  106.     : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
  107. #endif /* __STL_MEMBER_TEMPLATES */
  108.   multimap(const multimap<_Key,_T,_Compare,_Alloc>& __x) : _M_t(__x._M_t) { }
  109.   multimap<_Key,_T,_Compare,_Alloc>&
  110.   operator=(const multimap<_Key,_T,_Compare,_Alloc>& __x) {
  111.     _M_t = __x._M_t;
  112.     return *this; 
  113.   }
  114.   // accessors:
  115.   key_compare key_comp() const { return _M_t.key_comp(); }
  116.   value_compare value_comp() const { return value_compare(_M_t.key_comp()); }
  117.   allocator_type get_allocator() const { return _M_t.get_allocator(); }
  118.   iterator begin() { return _M_t.begin(); }
  119.   const_iterator begin() const { return _M_t.begin(); }
  120.   iterator end() { return _M_t.end(); }
  121.   const_iterator end() const { return _M_t.end(); }
  122.   reverse_iterator rbegin() { return _M_t.rbegin(); }
  123.   const_reverse_iterator rbegin() const { return _M_t.rbegin(); }
  124.   reverse_iterator rend() { return _M_t.rend(); }
  125.   const_reverse_iterator rend() const { return _M_t.rend(); }
  126.   bool empty() const { return _M_t.empty(); }
  127.   size_type size() const { return _M_t.size(); }
  128.   size_type max_size() const { return _M_t.max_size(); }
  129.   void swap(multimap<_Key,_T,_Compare,_Alloc>& __x) { _M_t.swap(__x._M_t); }
  130.   // insert/erase
  131.   iterator insert(const value_type& __x) { return _M_t.insert_equal(__x); }
  132.   iterator insert(iterator __position, const value_type& __x) {
  133.     return _M_t.insert_equal(__position, __x);
  134.   }
  135. #ifdef __STL_MEMBER_TEMPLATES  
  136.   template <class _InputIterator>
  137.   void insert(_InputIterator __first, _InputIterator __last) {
  138.     _M_t.insert_equal(__first, __last);
  139.   }
  140. #else
  141.   void insert(const value_type* __first, const value_type* __last) {
  142.     _M_t.insert_equal(__first, __last);
  143.   }
  144.   void insert(const_iterator __first, const_iterator __last) {
  145.     _M_t.insert_equal(__first, __last);
  146.   }
  147. #endif /* __STL_MEMBER_TEMPLATES */
  148.   void erase(iterator __position) { _M_t.erase(__position); }
  149.   size_type erase(const key_type& __x) { return _M_t.erase(__x); }
  150.   void erase(iterator __first, iterator __last)
  151.     { _M_t.erase(__first, __last); }
  152.   void clear() { _M_t.clear(); }
  153.   // multimap operations:
  154.   iterator find(const key_type& __x) { return _M_t.find(__x); }
  155.   const_iterator find(const key_type& __x) const { return _M_t.find(__x); }
  156.   size_type count(const key_type& __x) const { return _M_t.count(__x); }
  157.   iterator lower_bound(const key_type& __x) {return _M_t.lower_bound(__x); }
  158.   const_iterator lower_bound(const key_type& __x) const {
  159.     return _M_t.lower_bound(__x); 
  160.   }
  161.   iterator upper_bound(const key_type& __x) {return _M_t.upper_bound(__x); }
  162.   const_iterator upper_bound(const key_type& __x) const {
  163.     return _M_t.upper_bound(__x); 
  164.   }
  165.    pair<iterator,iterator> equal_range(const key_type& __x) {
  166.     return _M_t.equal_range(__x);
  167.   }
  168.   pair<const_iterator,const_iterator> equal_range(const key_type& __x) const {
  169.     return _M_t.equal_range(__x);
  170.   }
  171.   friend bool operator== __STL_NULL_TMPL_ARGS (const multimap&,
  172.                                                const multimap&);
  173.   friend bool operator< __STL_NULL_TMPL_ARGS (const multimap&,
  174.                                               const multimap&);
  175. };
  176. template <class _Key, class _T, class _Compare, class _Alloc>
  177. inline bool operator==(const multimap<_Key,_T,_Compare,_Alloc>& __x, 
  178.                        const multimap<_Key,_T,_Compare,_Alloc>& __y) {
  179.   return __x._M_t == __y._M_t;
  180. }
  181. template <class _Key, class _T, class _Compare, class _Alloc>
  182. inline bool operator<(const multimap<_Key,_T,_Compare,_Alloc>& __x, 
  183.                       const multimap<_Key,_T,_Compare,_Alloc>& __y) {
  184.   return __x._M_t < __y._M_t;
  185. }
  186. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  187. template <class _Key, class _T, class _Compare, class _Alloc>
  188. inline void swap(multimap<_Key,_T,_Compare,_Alloc>& __x, 
  189.                  multimap<_Key,_T,_Compare,_Alloc>& __y) {
  190.   __x.swap(__y);
  191. }
  192. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  193. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  194. #pragma reset woff 1174
  195. #pragma reset woff 1375
  196. #endif
  197. __STL_END_NAMESPACE
  198. #endif /* __SGI_STL_INTERNAL_MULTIMAP_H */
  199. // Local Variables:
  200. // mode:C++
  201. // End: