stl_multiset.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
  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. __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 multiset {
  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 multiset
  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.   multiset() : _M_t(_Compare(), allocator_type()) {}
  68.   explicit multiset(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.   multiset(_InputIterator __first, _InputIterator __last)
  74.     : _M_t(_Compare(), allocator_type())
  75.     { _M_t.insert_equal(__first, __last); }
  76.   template <class _InputIterator>
  77.   multiset(_InputIterator __first, _InputIterator __last,
  78.            const _Compare& __comp,
  79.            const allocator_type& __a = allocator_type())
  80.     : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
  81. #else
  82.   multiset(const value_type* __first, const value_type* __last)
  83.     : _M_t(_Compare(), allocator_type())
  84.     { _M_t.insert_equal(__first, __last); }
  85.   multiset(const value_type* __first, const value_type* __last,
  86.            const _Compare& __comp,
  87.            const allocator_type& __a = allocator_type())
  88.     : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
  89.   multiset(const_iterator __first, const_iterator __last)
  90.     : _M_t(_Compare(), allocator_type())
  91.     { _M_t.insert_equal(__first, __last); }
  92.   multiset(const_iterator __first, const_iterator __last,
  93.            const _Compare& __comp,
  94.            const allocator_type& __a = allocator_type())
  95.     : _M_t(__comp, __a) { _M_t.insert_equal(__first, __last); }
  96.    
  97. #endif /* __STL_MEMBER_TEMPLATES */
  98.   multiset(const multiset<_Key,_Compare,_Alloc>& __x) : _M_t(__x._M_t) {}
  99.   multiset<_Key,_Compare,_Alloc>&
  100.   operator=(const multiset<_Key,_Compare,_Alloc>& __x) {
  101.     _M_t = __x._M_t; 
  102.     return *this;
  103.   }
  104.   // accessors:
  105.   key_compare key_comp() const { return _M_t.key_comp(); }
  106.   value_compare value_comp() const { return _M_t.key_comp(); }
  107.   allocator_type get_allocator() const { return _M_t.get_allocator(); }
  108.   iterator begin() const { return _M_t.begin(); }
  109.   iterator end() const { return _M_t.end(); }
  110.   reverse_iterator rbegin() const { return _M_t.rbegin(); } 
  111.   reverse_iterator rend() const { return _M_t.rend(); }
  112.   bool empty() const { return _M_t.empty(); }
  113.   size_type size() const { return _M_t.size(); }
  114.   size_type max_size() const { return _M_t.max_size(); }
  115.   void swap(multiset<_Key,_Compare,_Alloc>& __x) { _M_t.swap(__x._M_t); }
  116.   // insert/erase
  117.   iterator insert(const value_type& __x) { 
  118.     return _M_t.insert_equal(__x);
  119.   }
  120.   iterator insert(iterator __position, const value_type& __x) {
  121.     typedef typename _Rep_type::iterator _Rep_iterator;
  122.     return _M_t.insert_equal((_Rep_iterator&)__position, __x);
  123.   }
  124. #ifdef __STL_MEMBER_TEMPLATES  
  125.   template <class _InputIterator>
  126.   void insert(_InputIterator __first, _InputIterator __last) {
  127.     _M_t.insert_equal(__first, __last);
  128.   }
  129. #else
  130.   void insert(const value_type* __first, const value_type* __last) {
  131.     _M_t.insert_equal(__first, __last);
  132.   }
  133.   void insert(const_iterator __first, const_iterator __last) {
  134.     _M_t.insert_equal(__first, __last);
  135.   }
  136. #endif /* __STL_MEMBER_TEMPLATES */
  137.   void erase(iterator __position) { 
  138.     typedef typename _Rep_type::iterator _Rep_iterator;
  139.     _M_t.erase((_Rep_iterator&)__position); 
  140.   }
  141.   size_type erase(const key_type& __x) { 
  142.     return _M_t.erase(__x); 
  143.   }
  144.   void erase(iterator __first, iterator __last) { 
  145.     typedef typename _Rep_type::iterator _Rep_iterator;
  146.     _M_t.erase((_Rep_iterator&)__first, (_Rep_iterator&)__last); 
  147.   }
  148.   void clear() { _M_t.clear(); }
  149.   // multiset operations:
  150.   iterator find(const key_type& __x) const { return _M_t.find(__x); }
  151.   size_type count(const key_type& __x) const { return _M_t.count(__x); }
  152.   iterator lower_bound(const key_type& __x) const {
  153.     return _M_t.lower_bound(__x);
  154.   }
  155.   iterator upper_bound(const key_type& __x) const {
  156.     return _M_t.upper_bound(__x); 
  157.   }
  158.   pair<iterator,iterator> equal_range(const key_type& __x) const {
  159.     return _M_t.equal_range(__x);
  160.   }
  161.   friend bool operator== __STL_NULL_TMPL_ARGS (const multiset&,
  162.                                                const multiset&);
  163.   friend bool operator< __STL_NULL_TMPL_ARGS (const multiset&,
  164.                                               const multiset&);
  165. };
  166. template <class _Key, class _Compare, class _Alloc>
  167. inline bool operator==(const multiset<_Key,_Compare,_Alloc>& __x, 
  168.                        const multiset<_Key,_Compare,_Alloc>& __y) {
  169.   return __x._M_t == __y._M_t;
  170. }
  171. template <class _Key, class _Compare, class _Alloc>
  172. inline bool operator<(const multiset<_Key,_Compare,_Alloc>& __x, 
  173.                       const multiset<_Key,_Compare,_Alloc>& __y) {
  174.   return __x._M_t < __y._M_t;
  175. }
  176. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  177. template <class _Key, class _Compare, class _Alloc>
  178. inline void swap(multiset<_Key,_Compare,_Alloc>& __x, 
  179.                  multiset<_Key,_Compare,_Alloc>& __y) {
  180.   __x.swap(__y);
  181. }
  182. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  183. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  184. #pragma reset woff 1174
  185. #pragma reset woff 1375
  186. #endif
  187. __STL_END_NAMESPACE
  188. #endif /* __SGI_STL_INTERNAL_MULTISET_H */
  189. // Local Variables:
  190. // mode:C++
  191. // End: