stl_map.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_MAP_H
  30. #define __SGI_STL_INTERNAL_MAP_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 declarations of operators == and <, needed for friend declarations.
  38. template <class _Key, class _Tp, 
  39.           class _Compare __STL_DEPENDENT_DEFAULT_TMPL(less<_Key>),
  40.           class _Alloc = __STL_DEFAULT_ALLOCATOR(_Tp) >
  41. class map;
  42. template <class _Key, class _Tp, class _Compare, class _Alloc>
  43. inline bool operator==(const map<_Key,_Tp,_Compare,_Alloc>& __x, 
  44.                        const map<_Key,_Tp,_Compare,_Alloc>& __y);
  45. template <class _Key, class _Tp, class _Compare, class _Alloc>
  46. inline bool operator<(const map<_Key,_Tp,_Compare,_Alloc>& __x, 
  47.                       const map<_Key,_Tp,_Compare,_Alloc>& __y);
  48. template <class _Key, class _Tp, class _Compare, class _Alloc>
  49. class map {
  50. public:
  51. // requirements:
  52.   __STL_CLASS_REQUIRES(_Tp, _Assignable);
  53.   __STL_CLASS_BINARY_FUNCTION_CHECK(_Compare, bool, _Key, _Key);
  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.     
  61.   class value_compare
  62.     : public binary_function<value_type, value_type, bool> {
  63.   friend class map<_Key,_Tp,_Compare,_Alloc>;
  64.   protected :
  65.     _Compare comp;
  66.     value_compare(_Compare __c) : comp(__c) {}
  67.   public:
  68.     bool operator()(const value_type& __x, const value_type& __y) const {
  69.       return comp(__x.first, __y.first);
  70.     }
  71.   };
  72. private:
  73.   typedef _Rb_tree<key_type, value_type, 
  74.                    _Select1st<value_type>, key_compare, _Alloc> _Rep_type;
  75.   _Rep_type _M_t;  // red-black tree representing map
  76. public:
  77.   typedef typename _Rep_type::pointer pointer;
  78.   typedef typename _Rep_type::const_pointer const_pointer;
  79.   typedef typename _Rep_type::reference reference;
  80.   typedef typename _Rep_type::const_reference const_reference;
  81.   typedef typename _Rep_type::iterator iterator;
  82.   typedef typename _Rep_type::const_iterator const_iterator;
  83.   typedef typename _Rep_type::reverse_iterator reverse_iterator;
  84.   typedef typename _Rep_type::const_reverse_iterator const_reverse_iterator;
  85.   typedef typename _Rep_type::size_type size_type;
  86.   typedef typename _Rep_type::difference_type difference_type;
  87.   typedef typename _Rep_type::allocator_type allocator_type;
  88.   // allocation/deallocation
  89.   map() : _M_t(_Compare(), allocator_type()) {}
  90.   explicit map(const _Compare& __comp,
  91.                const allocator_type& __a = allocator_type())
  92.     : _M_t(__comp, __a) {}
  93. #ifdef __STL_MEMBER_TEMPLATES
  94.   template <class _InputIterator>
  95.   map(_InputIterator __first, _InputIterator __last)
  96.     : _M_t(_Compare(), allocator_type())
  97.     { _M_t.insert_unique(__first, __last); }
  98.   template <class _InputIterator>
  99.   map(_InputIterator __first, _InputIterator __last, const _Compare& __comp,
  100.       const allocator_type& __a = allocator_type())
  101.     : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
  102. #else
  103.   map(const value_type* __first, const value_type* __last)
  104.     : _M_t(_Compare(), allocator_type())
  105.     { _M_t.insert_unique(__first, __last); }
  106.   map(const value_type* __first,
  107.       const value_type* __last, const _Compare& __comp,
  108.       const allocator_type& __a = allocator_type())
  109.     : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
  110.   map(const_iterator __first, const_iterator __last)
  111.     : _M_t(_Compare(), allocator_type()) 
  112.     { _M_t.insert_unique(__first, __last); }
  113.   map(const_iterator __first, const_iterator __last, const _Compare& __comp,
  114.       const allocator_type& __a = allocator_type())
  115.     : _M_t(__comp, __a) { _M_t.insert_unique(__first, __last); }
  116. #endif /* __STL_MEMBER_TEMPLATES */
  117.   map(const map<_Key,_Tp,_Compare,_Alloc>& __x) : _M_t(__x._M_t) {}
  118.   map<_Key,_Tp,_Compare,_Alloc>&
  119.   operator=(const map<_Key, _Tp, _Compare, _Alloc>& __x)
  120.   {
  121.     _M_t = __x._M_t;
  122.     return *this; 
  123.   }
  124.   // accessors:
  125.   key_compare key_comp() const { return _M_t.key_comp(); }
  126.   value_compare value_comp() const { return value_compare(_M_t.key_comp()); }
  127.   allocator_type get_allocator() const { return _M_t.get_allocator(); }
  128.   iterator begin() { return _M_t.begin(); }
  129.   const_iterator begin() const { return _M_t.begin(); }
  130.   iterator end() { return _M_t.end(); }
  131.   const_iterator end() const { return _M_t.end(); }
  132.   reverse_iterator rbegin() { return _M_t.rbegin(); }
  133.   const_reverse_iterator rbegin() const { return _M_t.rbegin(); }
  134.   reverse_iterator rend() { return _M_t.rend(); }
  135.   const_reverse_iterator rend() const { return _M_t.rend(); }
  136.   bool empty() const { return _M_t.empty(); }
  137.   size_type size() const { return _M_t.size(); }
  138.   size_type max_size() const { return _M_t.max_size(); }
  139.   _Tp& operator[](const key_type& __k) {
  140.     iterator __i = lower_bound(__k);
  141.     // __i->first is greater than or equivalent to __k.
  142.     if (__i == end() || key_comp()(__k, (*__i).first))
  143.       __i = insert(__i, value_type(__k, _Tp()));
  144.     return (*__i).second;
  145.   }
  146.   void swap(map<_Key,_Tp,_Compare,_Alloc>& __x) { _M_t.swap(__x._M_t); }
  147.   // insert/erase
  148.   pair<iterator,bool> insert(const value_type& __x) 
  149.     { return _M_t.insert_unique(__x); }
  150.   iterator insert(iterator position, const value_type& __x)
  151.     { return _M_t.insert_unique(position, __x); }
  152. #ifdef __STL_MEMBER_TEMPLATES
  153.   template <class _InputIterator>
  154.   void insert(_InputIterator __first, _InputIterator __last) {
  155.     _M_t.insert_unique(__first, __last);
  156.   }
  157. #else
  158.   void insert(const value_type* __first, const value_type* __last) {
  159.     _M_t.insert_unique(__first, __last);
  160.   }
  161.   void insert(const_iterator __first, const_iterator __last) {
  162.     _M_t.insert_unique(__first, __last);
  163.   }
  164. #endif /* __STL_MEMBER_TEMPLATES */
  165.   void erase(iterator __position) { _M_t.erase(__position); }
  166.   size_type erase(const key_type& __x) { return _M_t.erase(__x); }
  167.   void erase(iterator __first, iterator __last)
  168.     { _M_t.erase(__first, __last); }
  169.   void clear() { _M_t.clear(); }
  170.   // map operations:
  171.   iterator find(const key_type& __x) { return _M_t.find(__x); }
  172.   const_iterator find(const key_type& __x) const { return _M_t.find(__x); }
  173.   size_type count(const key_type& __x) const {
  174.     return _M_t.find(__x) == _M_t.end() ? 0 : 1; 
  175.   }
  176.   iterator lower_bound(const key_type& __x) {return _M_t.lower_bound(__x); }
  177.   const_iterator lower_bound(const key_type& __x) const {
  178.     return _M_t.lower_bound(__x); 
  179.   }
  180.   iterator upper_bound(const key_type& __x) {return _M_t.upper_bound(__x); }
  181.   const_iterator upper_bound(const key_type& __x) const {
  182.     return _M_t.upper_bound(__x); 
  183.   }
  184.   
  185.   pair<iterator,iterator> equal_range(const key_type& __x) {
  186.     return _M_t.equal_range(__x);
  187.   }
  188.   pair<const_iterator,const_iterator> equal_range(const key_type& __x) const {
  189.     return _M_t.equal_range(__x);
  190.   }
  191. #ifdef __STL_TEMPLATE_FRIENDS 
  192.   template <class _K1, class _T1, class _C1, class _A1>
  193.   friend bool operator== (const map<_K1, _T1, _C1, _A1>&,
  194.                           const map<_K1, _T1, _C1, _A1>&);
  195.   template <class _K1, class _T1, class _C1, class _A1>
  196.   friend bool operator< (const map<_K1, _T1, _C1, _A1>&,
  197.                          const map<_K1, _T1, _C1, _A1>&);
  198. #else /* __STL_TEMPLATE_FRIENDS */
  199.   friend bool __STD_QUALIFIER
  200.   operator== __STL_NULL_TMPL_ARGS (const map&, const map&);
  201.   friend bool __STD_QUALIFIER
  202.   operator< __STL_NULL_TMPL_ARGS (const map&, const map&);
  203. #endif /* __STL_TEMPLATE_FRIENDS */
  204. };
  205. template <class _Key, class _Tp, class _Compare, class _Alloc>
  206. inline bool operator==(const map<_Key,_Tp,_Compare,_Alloc>& __x, 
  207.                        const map<_Key,_Tp,_Compare,_Alloc>& __y) {
  208.   return __x._M_t == __y._M_t;
  209. }
  210. template <class _Key, class _Tp, class _Compare, class _Alloc>
  211. inline bool operator<(const map<_Key,_Tp,_Compare,_Alloc>& __x, 
  212.                       const map<_Key,_Tp,_Compare,_Alloc>& __y) {
  213.   return __x._M_t < __y._M_t;
  214. }
  215. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  216. template <class _Key, class _Tp, class _Compare, class _Alloc>
  217. inline bool operator!=(const map<_Key,_Tp,_Compare,_Alloc>& __x, 
  218.                        const map<_Key,_Tp,_Compare,_Alloc>& __y) {
  219.   return !(__x == __y);
  220. }
  221. template <class _Key, class _Tp, class _Compare, class _Alloc>
  222. inline bool operator>(const map<_Key,_Tp,_Compare,_Alloc>& __x, 
  223.                       const map<_Key,_Tp,_Compare,_Alloc>& __y) {
  224.   return __y < __x;
  225. }
  226. template <class _Key, class _Tp, class _Compare, class _Alloc>
  227. inline bool operator<=(const map<_Key,_Tp,_Compare,_Alloc>& __x, 
  228.                        const map<_Key,_Tp,_Compare,_Alloc>& __y) {
  229.   return !(__y < __x);
  230. }
  231. template <class _Key, class _Tp, class _Compare, class _Alloc>
  232. inline bool operator>=(const map<_Key,_Tp,_Compare,_Alloc>& __x, 
  233.                        const map<_Key,_Tp,_Compare,_Alloc>& __y) {
  234.   return !(__x < __y);
  235. }
  236. template <class _Key, class _Tp, class _Compare, class _Alloc>
  237. inline void swap(map<_Key,_Tp,_Compare,_Alloc>& __x, 
  238.                  map<_Key,_Tp,_Compare,_Alloc>& __y) {
  239.   __x.swap(__y);
  240. }
  241. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  242. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  243. #pragma reset woff 1174
  244. #pragma reset woff 1375
  245. #endif
  246. __STL_END_NAMESPACE
  247. #endif /* __SGI_STL_INTERNAL_MAP_H */
  248. // Local Variables:
  249. // mode:C++
  250. // End: