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

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