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

STL

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 1996
  3.  * Silicon Graphics Computer Systems, Inc.
  4.  *
  5.  * Permission to use, copy, modify, distribute and sell this software
  6.  * and its documentation for any purpose is hereby granted without fee,
  7.  * provided that the above copyright notice appear in all copies and
  8.  * that both that copyright notice and this permission notice appear
  9.  * in supporting documentation.  Silicon Graphics makes no
  10.  * representations about the suitability of this software for any
  11.  * purpose.  It is provided "as is" without express or implied warranty.
  12.  *
  13.  *
  14.  * Copyright (c) 1994
  15.  * Hewlett-Packard Company
  16.  *
  17.  * Permission to use, copy, modify, distribute and sell this software
  18.  * and its documentation for any purpose is hereby granted without fee,
  19.  * provided that the above copyright notice appear in all copies and
  20.  * that both that copyright notice and this permission notice appear
  21.  * in supporting documentation.  Hewlett-Packard Company makes no
  22.  * representations about the suitability of this software for any
  23.  * purpose.  It is provided "as is" without express or implied warranty.
  24.  *
  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_HASH_SET_H
  30. #define __SGI_STL_INTERNAL_HASH_SET_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 Value, class HashFcn = hash<Value>,
  37.           class EqualKey = equal_to<Value>,
  38.           class Alloc = alloc>
  39. #else
  40. template <class Value, class HashFcn, class EqualKey, class Alloc = alloc>
  41. #endif
  42. class hash_set
  43. {
  44. private:
  45.   typedef hashtable<Value, Value, HashFcn, identity<Value>, 
  46.                     EqualKey, Alloc> ht;
  47.   ht rep;
  48. public:
  49.   typedef typename ht::key_type key_type;
  50.   typedef typename ht::value_type value_type;
  51.   typedef typename ht::hasher hasher;
  52.   typedef typename ht::key_equal key_equal;
  53.   typedef typename ht::size_type size_type;
  54.   typedef typename ht::difference_type difference_type;
  55.   typedef typename ht::const_pointer pointer;
  56.   typedef typename ht::const_pointer const_pointer;
  57.   typedef typename ht::const_reference reference;
  58.   typedef typename ht::const_reference const_reference;
  59.   typedef typename ht::const_iterator iterator;
  60.   typedef typename ht::const_iterator const_iterator;
  61.   hasher hash_funct() const { return rep.hash_funct(); }
  62.   key_equal key_eq() const { return rep.key_eq(); }
  63. public:
  64.   hash_set() : rep(100, hasher(), key_equal()) {}
  65.   explicit hash_set(size_type n) : rep(n, hasher(), key_equal()) {}
  66.   hash_set(size_type n, const hasher& hf) : rep(n, hf, key_equal()) {}
  67.   hash_set(size_type n, const hasher& hf, const key_equal& eql)
  68.     : rep(n, hf, eql) {}
  69. #ifdef __STL_MEMBER_TEMPLATES
  70.   template <class InputIterator>
  71.   hash_set(InputIterator f, InputIterator l)
  72.     : rep(100, hasher(), key_equal()) { rep.insert_unique(f, l); }
  73.   template <class InputIterator>
  74.   hash_set(InputIterator f, InputIterator l, size_type n)
  75.     : rep(n, hasher(), key_equal()) { rep.insert_unique(f, l); }
  76.   template <class InputIterator>
  77.   hash_set(InputIterator f, InputIterator l, size_type n,
  78.            const hasher& hf)
  79.     : rep(n, hf, key_equal()) { rep.insert_unique(f, l); }
  80.   template <class InputIterator>
  81.   hash_set(InputIterator f, InputIterator l, size_type n,
  82.            const hasher& hf, const key_equal& eql)
  83.     : rep(n, hf, eql) { rep.insert_unique(f, l); }
  84. #else
  85.   hash_set(const value_type* f, const value_type* l)
  86.     : rep(100, hasher(), key_equal()) { rep.insert_unique(f, l); }
  87.   hash_set(const value_type* f, const value_type* l, size_type n)
  88.     : rep(n, hasher(), key_equal()) { rep.insert_unique(f, l); }
  89.   hash_set(const value_type* f, const value_type* l, size_type n,
  90.            const hasher& hf)
  91.     : rep(n, hf, key_equal()) { rep.insert_unique(f, l); }
  92.   hash_set(const value_type* f, const value_type* l, size_type n,
  93.            const hasher& hf, const key_equal& eql)
  94.     : rep(n, hf, eql) { rep.insert_unique(f, l); }
  95.   hash_set(const_iterator f, const_iterator l)
  96.     : rep(100, hasher(), key_equal()) { rep.insert_unique(f, l); }
  97.   hash_set(const_iterator f, const_iterator l, size_type n)
  98.     : rep(n, hasher(), key_equal()) { rep.insert_unique(f, l); }
  99.   hash_set(const_iterator f, const_iterator l, size_type n,
  100.            const hasher& hf)
  101.     : rep(n, hf, key_equal()) { rep.insert_unique(f, l); }
  102.   hash_set(const_iterator f, const_iterator l, size_type n,
  103.            const hasher& hf, const key_equal& eql)
  104.     : rep(n, hf, eql) { rep.insert_unique(f, l); }
  105. #endif /*__STL_MEMBER_TEMPLATES */
  106. public:
  107.   size_type size() const { return rep.size(); }
  108.   size_type max_size() const { return rep.max_size(); }
  109.   bool empty() const { return rep.empty(); }
  110.   void swap(hash_set& hs) { rep.swap(hs.rep); }
  111.   friend bool operator== __STL_NULL_TMPL_ARGS (const hash_set&,
  112.                                                const hash_set&);
  113.   iterator begin() const { return rep.begin(); }
  114.   iterator end() const { return rep.end(); }
  115. public:
  116.   pair<iterator, bool> insert(const value_type& obj)
  117.     {
  118.       pair<typename ht::iterator, bool> p = rep.insert_unique(obj);
  119.       return pair<iterator, bool>(p.first, p.second);
  120.     }
  121. #ifdef __STL_MEMBER_TEMPLATES
  122.   template <class InputIterator>
  123.   void insert(InputIterator f, InputIterator l) { rep.insert_unique(f,l); }
  124. #else
  125.   void insert(const value_type* f, const value_type* l) {
  126.     rep.insert_unique(f,l);
  127.   }
  128.   void insert(const_iterator f, const_iterator l) {rep.insert_unique(f, l); }
  129. #endif /*__STL_MEMBER_TEMPLATES */
  130.   pair<iterator, bool> insert_noresize(const value_type& obj)
  131.   {
  132.     pair<typename ht::iterator, bool> p = rep.insert_unique_noresize(obj);
  133.     return pair<iterator, bool>(p.first, p.second);
  134.   }
  135.   iterator find(const key_type& key) const { return rep.find(key); }
  136.   size_type count(const key_type& key) const { return rep.count(key); }
  137.   
  138.   pair<iterator, iterator> equal_range(const key_type& key) const
  139.     { return rep.equal_range(key); }
  140.   size_type erase(const key_type& key) {return rep.erase(key); }
  141.   void erase(iterator it) { rep.erase(it); }
  142.   void erase(iterator f, iterator l) { rep.erase(f, l); }
  143.   void clear() { rep.clear(); }
  144. public:
  145.   void resize(size_type hint) { rep.resize(hint); }
  146.   size_type bucket_count() const { return rep.bucket_count(); }
  147.   size_type max_bucket_count() const { return rep.max_bucket_count(); }
  148.   size_type elems_in_bucket(size_type n) const
  149.     { return rep.elems_in_bucket(n); }
  150. };
  151. template <class Value, class HashFcn, class EqualKey, class Alloc>
  152. inline bool operator==(const hash_set<Value, HashFcn, EqualKey, Alloc>& hs1,
  153.                        const hash_set<Value, HashFcn, EqualKey, Alloc>& hs2)
  154. {
  155.   return hs1.rep == hs2.rep;
  156. }
  157. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  158. template <class Val, class HashFcn, class EqualKey, class Alloc>
  159. inline void swap(hash_set<Val, HashFcn, EqualKey, Alloc>& hs1,
  160.                  hash_set<Val, HashFcn, EqualKey, Alloc>& hs2) {
  161.   hs1.swap(hs2);
  162. }
  163. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  164. #ifndef __STL_LIMITED_DEFAULT_TEMPLATES
  165. template <class Value, class HashFcn = hash<Value>,
  166.           class EqualKey = equal_to<Value>,
  167.           class Alloc = alloc>
  168. #else
  169. template <class Value, class HashFcn, class EqualKey, class Alloc = alloc>
  170. #endif
  171. class hash_multiset
  172. {
  173. private:
  174.   typedef hashtable<Value, Value, HashFcn, identity<Value>, 
  175.                     EqualKey, Alloc> ht;
  176.   ht rep;
  177. public:
  178.   typedef typename ht::key_type key_type;
  179.   typedef typename ht::value_type value_type;
  180.   typedef typename ht::hasher hasher;
  181.   typedef typename ht::key_equal key_equal;
  182.   typedef typename ht::size_type size_type;
  183.   typedef typename ht::difference_type difference_type;
  184.   typedef typename ht::const_pointer pointer;
  185.   typedef typename ht::const_pointer const_pointer;
  186.   typedef typename ht::const_reference reference;
  187.   typedef typename ht::const_reference const_reference;
  188.   typedef typename ht::const_iterator iterator;
  189.   typedef typename ht::const_iterator const_iterator;
  190.   hasher hash_funct() const { return rep.hash_funct(); }
  191.   key_equal key_eq() const { return rep.key_eq(); }
  192. public:
  193.   hash_multiset() : rep(100, hasher(), key_equal()) {}
  194.   explicit hash_multiset(size_type n) : rep(n, hasher(), key_equal()) {}
  195.   hash_multiset(size_type n, const hasher& hf) : rep(n, hf, key_equal()) {}
  196.   hash_multiset(size_type n, const hasher& hf, const key_equal& eql)
  197.     : rep(n, hf, eql) {}
  198. #ifdef __STL_MEMBER_TEMPLATES
  199.   template <class InputIterator>
  200.   hash_multiset(InputIterator f, InputIterator l)
  201.     : rep(100, hasher(), key_equal()) { rep.insert_equal(f, l); }
  202.   template <class InputIterator>
  203.   hash_multiset(InputIterator f, InputIterator l, size_type n)
  204.     : rep(n, hasher(), key_equal()) { rep.insert_equal(f, l); }
  205.   template <class InputIterator>
  206.   hash_multiset(InputIterator f, InputIterator l, size_type n,
  207.                 const hasher& hf)
  208.     : rep(n, hf, key_equal()) { rep.insert_equal(f, l); }
  209.   template <class InputIterator>
  210.   hash_multiset(InputIterator f, InputIterator l, size_type n,
  211.                 const hasher& hf, const key_equal& eql)
  212.     : rep(n, hf, eql) { rep.insert_equal(f, l); }
  213. #else
  214.   hash_multiset(const value_type* f, const value_type* l)
  215.     : rep(100, hasher(), key_equal()) { rep.insert_equal(f, l); }
  216.   hash_multiset(const value_type* f, const value_type* l, size_type n)
  217.     : rep(n, hasher(), key_equal()) { rep.insert_equal(f, l); }
  218.   hash_multiset(const value_type* f, const value_type* l, size_type n,
  219.                 const hasher& hf)
  220.     : rep(n, hf, key_equal()) { rep.insert_equal(f, l); }
  221.   hash_multiset(const value_type* f, const value_type* l, size_type n,
  222.                 const hasher& hf, const key_equal& eql)
  223.     : rep(n, hf, eql) { rep.insert_equal(f, l); }
  224.   hash_multiset(const_iterator f, const_iterator l)
  225.     : rep(100, hasher(), key_equal()) { rep.insert_equal(f, l); }
  226.   hash_multiset(const_iterator f, const_iterator l, size_type n)
  227.     : rep(n, hasher(), key_equal()) { rep.insert_equal(f, l); }
  228.   hash_multiset(const_iterator f, const_iterator l, size_type n,
  229.                 const hasher& hf)
  230.     : rep(n, hf, key_equal()) { rep.insert_equal(f, l); }
  231.   hash_multiset(const_iterator f, const_iterator l, size_type n,
  232.                 const hasher& hf, const key_equal& eql)
  233.     : rep(n, hf, eql) { rep.insert_equal(f, l); }
  234. #endif /*__STL_MEMBER_TEMPLATES */
  235. public:
  236.   size_type size() const { return rep.size(); }
  237.   size_type max_size() const { return rep.max_size(); }
  238.   bool empty() const { return rep.empty(); }
  239.   void swap(hash_multiset& hs) { rep.swap(hs.rep); }
  240.   friend bool operator== __STL_NULL_TMPL_ARGS (const hash_multiset&,
  241.                                                const hash_multiset&);
  242.   iterator begin() const { return rep.begin(); }
  243.   iterator end() const { return rep.end(); }
  244. public:
  245.   iterator insert(const value_type& obj) { return rep.insert_equal(obj); }
  246. #ifdef __STL_MEMBER_TEMPLATES
  247.   template <class InputIterator>
  248.   void insert(InputIterator f, InputIterator l) { rep.insert_equal(f,l); }
  249. #else
  250.   void insert(const value_type* f, const value_type* l) {
  251.     rep.insert_equal(f,l);
  252.   }
  253.   void insert(const_iterator f, const_iterator l) { rep.insert_equal(f, l); }
  254. #endif /*__STL_MEMBER_TEMPLATES */
  255.   iterator insert_noresize(const value_type& obj)
  256.     { return rep.insert_equal_noresize(obj); }    
  257.   iterator find(const key_type& key) const { return rep.find(key); }
  258.   size_type count(const key_type& key) const { return rep.count(key); }
  259.   
  260.   pair<iterator, iterator> equal_range(const key_type& key) const
  261.     { return rep.equal_range(key); }
  262.   size_type erase(const key_type& key) {return rep.erase(key); }
  263.   void erase(iterator it) { rep.erase(it); }
  264.   void erase(iterator f, iterator l) { rep.erase(f, l); }
  265.   void clear() { rep.clear(); }
  266. public:
  267.   void resize(size_type hint) { rep.resize(hint); }
  268.   size_type bucket_count() const { return rep.bucket_count(); }
  269.   size_type max_bucket_count() const { return rep.max_bucket_count(); }
  270.   size_type elems_in_bucket(size_type n) const
  271.     { return rep.elems_in_bucket(n); }
  272. };
  273. template <class Val, class HashFcn, class EqualKey, class Alloc>
  274. inline bool operator==(const hash_multiset<Val, HashFcn, EqualKey, Alloc>& hs1,
  275.                        const hash_multiset<Val, HashFcn, EqualKey, Alloc>& hs2)
  276. {
  277.   return hs1.rep == hs2.rep;
  278. }
  279. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  280. template <class Val, class HashFcn, class EqualKey, class Alloc>
  281. inline void swap(hash_multiset<Val, HashFcn, EqualKey, Alloc>& hs1,
  282.                  hash_multiset<Val, HashFcn, EqualKey, Alloc>& hs2)
  283. {
  284.   hs1.swap(hs2);
  285. }
  286. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  287. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  288. #pragma reset woff 1174
  289. #endif
  290. __STL_END_NAMESPACE
  291. #endif /* __SGI_STL_INTERNAL_HASH_SET_H */
  292. // Local Variables:
  293. // mode:C++
  294. // End: