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