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