home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Software / Servis / Devc / _SETUP.4 / Group3 / stl_multiset.h < prev    next >
C/C++ Source or Header  |  1998-03-08  |  7KB  |  201 lines

  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.  
  27. /* NOTE: This is an internal header file, included by other STL headers.
  28.  *   You should not attempt to use it directly.
  29.  */
  30.  
  31. #ifndef __SGI_STL_INTERNAL_MULTISET_H
  32. #define __SGI_STL_INTERNAL_MULTISET_H
  33.  
  34. __STL_BEGIN_NAMESPACE
  35.  
  36. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  37. #pragma set woff 1174
  38. #endif
  39.  
  40. #ifndef __STL_LIMITED_DEFAULT_TEMPLATES
  41. template <class Key, class Compare = less<Key>, class Alloc = alloc>
  42. #else
  43. template <class Key, class Compare, class Alloc = alloc>
  44. #endif
  45. class multiset {
  46. public:
  47.   // typedefs:
  48.  
  49.   typedef Key key_type;
  50.   typedef Key value_type;
  51.   typedef Compare key_compare;
  52.   typedef Compare value_compare;
  53. private:
  54.   typedef rb_tree<key_type, value_type, 
  55.                   identity<value_type>, key_compare, Alloc> rep_type;
  56.   rep_type t;  // red-black tree representing multiset
  57. public:
  58.   typedef typename rep_type::const_pointer pointer;
  59.   typedef typename rep_type::const_pointer const_pointer;
  60.   typedef typename rep_type::const_reference reference;
  61.   typedef typename rep_type::const_reference const_reference;
  62.   typedef typename rep_type::const_iterator iterator;
  63.   typedef typename rep_type::const_iterator const_iterator;
  64.   typedef typename rep_type::const_reverse_iterator reverse_iterator;
  65.   typedef typename rep_type::const_reverse_iterator const_reverse_iterator;
  66.   typedef typename rep_type::size_type size_type;
  67.   typedef typename rep_type::difference_type difference_type;
  68.  
  69.   // allocation/deallocation
  70.  
  71.   multiset() : t(Compare()) {}
  72.   explicit multiset(const Compare& comp) : t(comp) {}
  73.  
  74. #ifdef __STL_MEMBER_TEMPLATES
  75.   template <class InputIterator>
  76.   multiset(InputIterator first, InputIterator last)
  77.     : t(Compare()) { t.insert_equal(first, last); }
  78.   template <class InputIterator>
  79.   multiset(InputIterator first, InputIterator last, const Compare& comp)
  80.     : t(comp) { t.insert_equal(first, last); }
  81. #else
  82.   multiset(const value_type* first, const value_type* last)
  83.     : t(Compare()) { t.insert_equal(first, last); }
  84.   multiset(const value_type* first, const value_type* last,
  85.            const Compare& comp)
  86.     : t(comp) { t.insert_equal(first, last); }
  87.  
  88.   multiset(const_iterator first, const_iterator last)
  89.     : t(Compare()) { t.insert_equal(first, last); }
  90.   multiset(const_iterator first, const_iterator last, const Compare& comp)
  91.     : t(comp) { t.insert_equal(first, last); }
  92. #endif /* __STL_MEMBER_TEMPLATES */
  93.  
  94.   multiset(const multiset<Key, Compare, Alloc>& x) : t(x.t) {}
  95.   multiset<Key, Compare, Alloc>&
  96.   operator=(const multiset<Key, Compare, Alloc>& x) {
  97.     t = x.t; 
  98.     return *this;
  99.   }
  100.  
  101.   // accessors:
  102.  
  103.   key_compare key_comp() const { return t.key_comp(); }
  104.   value_compare value_comp() const { return t.key_comp(); }
  105.   iterator begin() const { return t.begin(); }
  106.   iterator end() const { return t.end(); }
  107.   reverse_iterator rbegin() const { return t.rbegin(); } 
  108.   reverse_iterator rend() const { return t.rend(); }
  109.   bool empty() const { return t.empty(); }
  110.   size_type size() const { return t.size(); }
  111.   size_type max_size() const { return t.max_size(); }
  112.   void swap(multiset<Key, Compare, Alloc>& x) { t.swap(x.t); }
  113.  
  114.   // insert/erase
  115.   iterator insert(const value_type& x) { 
  116.     return t.insert_equal(x);
  117.   }
  118.   iterator insert(iterator position, const value_type& x) {
  119.     typedef typename rep_type::iterator rep_iterator;
  120.     return t.insert_equal((rep_iterator&)position, x);
  121.   }
  122.  
  123. #ifdef __STL_MEMBER_TEMPLATES  
  124.   template <class InputIterator>
  125.   void insert(InputIterator first, InputIterator last) {
  126.     t.insert_equal(first, last);
  127.   }
  128. #else
  129.   void insert(const value_type* first, const value_type* last) {
  130.     t.insert_equal(first, last);
  131.   }
  132.   void insert(const_iterator first, const_iterator last) {
  133.     t.insert_equal(first, last);
  134.   }
  135. #endif /* __STL_MEMBER_TEMPLATES */
  136.   void erase(iterator position) { 
  137.     typedef typename rep_type::iterator rep_iterator;
  138.     t.erase((rep_iterator&)position); 
  139.   }
  140.   size_type erase(const key_type& x) { 
  141.     return t.erase(x); 
  142.   }
  143.   void erase(iterator first, iterator last) { 
  144.     typedef typename rep_type::iterator rep_iterator;
  145.     t.erase((rep_iterator&)first, (rep_iterator&)last); 
  146.   }
  147.   void clear() { t.clear(); }
  148.  
  149.   // multiset operations:
  150.  
  151.   iterator find(const key_type& x) const { return t.find(x); }
  152.   size_type count(const key_type& x) const { return t.count(x); }
  153.   iterator lower_bound(const key_type& x) const {
  154.     return t.lower_bound(x);
  155.   }
  156.   iterator upper_bound(const key_type& x) const {
  157.     return t.upper_bound(x); 
  158.   }
  159.   pair<iterator,iterator> equal_range(const key_type& x) const {
  160.     return t.equal_range(x);
  161.   }
  162.   friend bool operator== __STL_NULL_TMPL_ARGS (const multiset&,
  163.                                                const multiset&);
  164.   friend bool operator< __STL_NULL_TMPL_ARGS (const multiset&,
  165.                                               const multiset&);
  166. };
  167.  
  168. template <class Key, class Compare, class Alloc>
  169. inline bool operator==(const multiset<Key, Compare, Alloc>& x, 
  170.                        const multiset<Key, Compare, Alloc>& y) {
  171.   return x.t == y.t;
  172. }
  173.  
  174. template <class Key, class Compare, class Alloc>
  175. inline bool operator<(const multiset<Key, Compare, Alloc>& x, 
  176.                       const multiset<Key, Compare, Alloc>& y) {
  177.   return x.t < y.t;
  178. }
  179.  
  180. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  181.  
  182. template <class Key, class Compare, class Alloc>
  183. inline void swap(multiset<Key, Compare, Alloc>& x, 
  184.                  multiset<Key, Compare, Alloc>& y) {
  185.   x.swap(y);
  186. }
  187.  
  188. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  189.  
  190. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  191. #pragma reset woff 1174
  192. #endif
  193.  
  194. __STL_END_NAMESPACE
  195.  
  196. #endif /* __SGI_STL_INTERNAL_MULTISET_H */
  197.  
  198. // Local Variables:
  199. // mode:C++
  200. // End:
  201.