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