stl_multimap.h
上传用户:sichengcw
上传日期:2009-02-17
资源大小:202k
文件大小:7k
源码类别:

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