stl_hash_set.h
上传用户:kellyonhid
上传日期:2013-10-12
资源大小:932k
文件大小:15k
源码类别:

3D图形编程

开发平台:

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. #pragma set woff 1375
  35. #endif
  36. #ifndef __STL_LIMITED_DEFAULT_TEMPLATES
  37. template <class _Value, class _HashFcn = hash<_Value>,
  38.           class _EqualKey = equal_to<_Value>,
  39.           class _Alloc = __STL_DEFAULT_ALLOCATOR(_Value) >
  40. #else
  41. template <class _Value, class _HashFcn, class _EqualKey, 
  42.           class _Alloc = __STL_DEFAULT_ALLOCATOR(_Value) >
  43. #endif
  44. class hash_set
  45. {
  46. private:
  47.   typedef hashtable<_Value, _Value, _HashFcn, _Identity<_Value>, 
  48.                     _EqualKey, _Alloc> _Ht;
  49.   _Ht _M_ht;
  50. public:
  51.   typedef typename _Ht::key_type key_type;
  52.   typedef typename _Ht::value_type value_type;
  53.   typedef typename _Ht::hasher hasher;
  54.   typedef typename _Ht::key_equal key_equal;
  55.   typedef typename _Ht::size_type size_type;
  56.   typedef typename _Ht::difference_type difference_type;
  57.   typedef typename _Ht::const_pointer pointer;
  58.   typedef typename _Ht::const_pointer const_pointer;
  59.   typedef typename _Ht::const_reference reference;
  60.   typedef typename _Ht::const_reference const_reference;
  61.   typedef typename _Ht::const_iterator iterator;
  62.   typedef typename _Ht::const_iterator const_iterator;
  63.   typedef typename _Ht::allocator_type allocator_type;
  64.   hasher hash_funct() const { return _M_ht.hash_funct(); }
  65.   key_equal key_eq() const { return _M_ht.key_eq(); }
  66.   allocator_type get_allocator() const { return _M_ht.get_allocator(); }
  67. public:
  68.   hash_set()
  69.     : _M_ht(100, hasher(), key_equal(), allocator_type()) {}
  70.   explicit hash_set(size_type __n)
  71.     : _M_ht(__n, hasher(), key_equal(), allocator_type()) {}
  72.   hash_set(size_type __n, const hasher& __hf)
  73.     : _M_ht(__n, __hf, key_equal(), allocator_type()) {}
  74.   hash_set(size_type __n, const hasher& __hf, const key_equal& __eql,
  75.            const allocator_type& __a = allocator_type())
  76.     : _M_ht(__n, __hf, __eql, __a) {}
  77. #ifdef __STL_MEMBER_TEMPLATES
  78.   template <class _InputIterator>
  79.   hash_set(_InputIterator __f, _InputIterator __l)
  80.     : _M_ht(100, hasher(), key_equal(), allocator_type())
  81.     { _M_ht.insert_unique(__f, __l); }
  82.   template <class _InputIterator>
  83.   hash_set(_InputIterator __f, _InputIterator __l, size_type __n)
  84.     : _M_ht(__n, hasher(), key_equal(), allocator_type())
  85.     { _M_ht.insert_unique(__f, __l); }
  86.   template <class _InputIterator>
  87.   hash_set(_InputIterator __f, _InputIterator __l, size_type __n,
  88.            const hasher& __hf)
  89.     : _M_ht(__n, __hf, key_equal(), allocator_type())
  90.     { _M_ht.insert_unique(__f, __l); }
  91.   template <class _InputIterator>
  92.   hash_set(_InputIterator __f, _InputIterator __l, size_type __n,
  93.            const hasher& __hf, const key_equal& __eql,
  94.            const allocator_type& __a = allocator_type())
  95.     : _M_ht(__n, __hf, __eql, __a)
  96.     { _M_ht.insert_unique(__f, __l); }
  97. #else
  98.   hash_set(const value_type* __f, const value_type* __l)
  99.     : _M_ht(100, hasher(), key_equal(), allocator_type())
  100.     { _M_ht.insert_unique(__f, __l); }
  101.   hash_set(const value_type* __f, const value_type* __l, size_type __n)
  102.     : _M_ht(__n, hasher(), key_equal(), allocator_type())
  103.     { _M_ht.insert_unique(__f, __l); }
  104.   hash_set(const value_type* __f, const value_type* __l, size_type __n,
  105.            const hasher& __hf)
  106.     : _M_ht(__n, __hf, key_equal(), allocator_type())
  107.     { _M_ht.insert_unique(__f, __l); }
  108.   hash_set(const value_type* __f, const value_type* __l, size_type __n,
  109.            const hasher& __hf, const key_equal& __eql,
  110.            const allocator_type& __a = allocator_type())
  111.     : _M_ht(__n, __hf, __eql, __a)
  112.     { _M_ht.insert_unique(__f, __l); }
  113.   hash_set(const_iterator __f, const_iterator __l)
  114.     : _M_ht(100, hasher(), key_equal(), allocator_type())
  115.     { _M_ht.insert_unique(__f, __l); }
  116.   hash_set(const_iterator __f, const_iterator __l, size_type __n)
  117.     : _M_ht(__n, hasher(), key_equal(), allocator_type())
  118.     { _M_ht.insert_unique(__f, __l); }
  119.   hash_set(const_iterator __f, const_iterator __l, size_type __n,
  120.            const hasher& __hf)
  121.     : _M_ht(__n, __hf, key_equal(), allocator_type())
  122.     { _M_ht.insert_unique(__f, __l); }
  123.   hash_set(const_iterator __f, const_iterator __l, size_type __n,
  124.            const hasher& __hf, const key_equal& __eql,
  125.            const allocator_type& __a = allocator_type())
  126.     : _M_ht(__n, __hf, __eql, __a)
  127.     { _M_ht.insert_unique(__f, __l); }
  128. #endif /*__STL_MEMBER_TEMPLATES */
  129. public:
  130.   size_type size() const { return _M_ht.size(); }
  131.   size_type max_size() const { return _M_ht.max_size(); }
  132.   bool empty() const { return _M_ht.empty(); }
  133.   void swap(hash_set& __hs) { _M_ht.swap(__hs._M_ht); }
  134.   friend bool operator== __STL_NULL_TMPL_ARGS (const hash_set&,
  135.                                                const hash_set&);
  136.   iterator begin() const { return _M_ht.begin(); }
  137.   iterator end() const { return _M_ht.end(); }
  138. public:
  139.   pair<iterator, bool> insert(const value_type& __obj)
  140.     {
  141.       pair<typename _Ht::iterator, bool> __p = _M_ht.insert_unique(__obj);
  142.       return pair<iterator,bool>(__p.first, __p.second);
  143.     }
  144. #ifdef __STL_MEMBER_TEMPLATES
  145.   template <class _InputIterator>
  146.   void insert(_InputIterator __f, _InputIterator __l) 
  147.     { _M_ht.insert_unique(__f,__l); }
  148. #else
  149.   void insert(const value_type* __f, const value_type* __l) {
  150.     _M_ht.insert_unique(__f,__l);
  151.   }
  152.   void insert(const_iterator __f, const_iterator __l) 
  153.     {_M_ht.insert_unique(__f, __l); }
  154. #endif /*__STL_MEMBER_TEMPLATES */
  155.   pair<iterator, bool> insert_noresize(const value_type& __obj)
  156.   {
  157.     pair<typename _Ht::iterator, bool> __p = 
  158.       _M_ht.insert_unique_noresize(__obj);
  159.     return pair<iterator, bool>(__p.first, __p.second);
  160.   }
  161.   iterator find(const key_type& __key) const { return _M_ht.find(__key); }
  162.   size_type count(const key_type& __key) const { return _M_ht.count(__key); }
  163.   
  164.   pair<iterator, iterator> equal_range(const key_type& __key) const
  165.     { return _M_ht.equal_range(__key); }
  166.   size_type erase(const key_type& __key) {return _M_ht.erase(__key); }
  167.   void erase(iterator __it) { _M_ht.erase(__it); }
  168.   void erase(iterator __f, iterator __l) { _M_ht.erase(__f, __l); }
  169.   void clear() { _M_ht.clear(); }
  170. public:
  171.   void resize(size_type __hint) { _M_ht.resize(__hint); }
  172.   size_type bucket_count() const { return _M_ht.bucket_count(); }
  173.   size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }
  174.   size_type elems_in_bucket(size_type __n) const
  175.     { return _M_ht.elems_in_bucket(__n); }
  176. };
  177. template <class _Value, class _HashFcn, class _EqualKey, class _Alloc>
  178. inline bool 
  179. operator==(const hash_set<_Value,_HashFcn,_EqualKey,_Alloc>& __hs1,
  180.            const hash_set<_Value,_HashFcn,_EqualKey,_Alloc>& __hs2)
  181. {
  182.   return __hs1._M_ht == __hs2._M_ht;
  183. }
  184. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  185. template <class _Val, class _HashFcn, class _EqualKey, class _Alloc>
  186. inline void 
  187. swap(hash_set<_Val,_HashFcn,_EqualKey,_Alloc>& __hs1,
  188.      hash_set<_Val,_HashFcn,_EqualKey,_Alloc>& __hs2)
  189. {
  190.   __hs1.swap(__hs2);
  191. }
  192. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  193. #ifndef __STL_LIMITED_DEFAULT_TEMPLATES
  194. template <class _Value, class _HashFcn = hash<_Value>,
  195.           class _EqualKey = equal_to<_Value>,
  196.           class _Alloc = __STL_DEFAULT_ALLOCATOR(_Value) >
  197. #else
  198. template <class _Value, class _HashFcn, class _EqualKey, 
  199.           class _Alloc = __STL_DEFAULT_ALLOCATOR(_Value) >
  200. #endif
  201. class hash_multiset
  202. {
  203. private:
  204.   typedef hashtable<_Value, _Value, _HashFcn, _Identity<_Value>, 
  205.                     _EqualKey, _Alloc> _Ht;
  206.   _Ht _M_ht;
  207. public:
  208.   typedef typename _Ht::key_type key_type;
  209.   typedef typename _Ht::value_type value_type;
  210.   typedef typename _Ht::hasher hasher;
  211.   typedef typename _Ht::key_equal key_equal;
  212.   typedef typename _Ht::size_type size_type;
  213.   typedef typename _Ht::difference_type difference_type;
  214.   typedef typename _Ht::const_pointer pointer;
  215.   typedef typename _Ht::const_pointer const_pointer;
  216.   typedef typename _Ht::const_reference reference;
  217.   typedef typename _Ht::const_reference const_reference;
  218.   typedef typename _Ht::const_iterator iterator;
  219.   typedef typename _Ht::const_iterator const_iterator;
  220.   typedef typename _Ht::allocator_type allocator_type;
  221.   hasher hash_funct() const { return _M_ht.hash_funct(); }
  222.   key_equal key_eq() const { return _M_ht.key_eq(); }
  223.   allocator_type get_allocator() const { return _M_ht.get_allocator(); }
  224. public:
  225.   hash_multiset()
  226.     : _M_ht(100, hasher(), key_equal(), allocator_type()) {}
  227.   explicit hash_multiset(size_type __n)
  228.     : _M_ht(__n, hasher(), key_equal(), allocator_type()) {}
  229.   hash_multiset(size_type __n, const hasher& __hf)
  230.     : _M_ht(__n, __hf, key_equal(), allocator_type()) {}
  231.   hash_multiset(size_type __n, const hasher& __hf, const key_equal& __eql,
  232.                 const allocator_type& __a = allocator_type())
  233.     : _M_ht(__n, __hf, __eql, __a) {}
  234. #ifdef __STL_MEMBER_TEMPLATES
  235.   template <class _InputIterator>
  236.   hash_multiset(_InputIterator __f, _InputIterator __l)
  237.     : _M_ht(100, hasher(), key_equal(), allocator_type())
  238.     { _M_ht.insert_equal(__f, __l); }
  239.   template <class _InputIterator>
  240.   hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n)
  241.     : _M_ht(__n, hasher(), key_equal(), allocator_type())
  242.     { _M_ht.insert_equal(__f, __l); }
  243.   template <class _InputIterator>
  244.   hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n,
  245.                 const hasher& __hf)
  246.     : _M_ht(__n, __hf, key_equal(), allocator_type())
  247.     { _M_ht.insert_equal(__f, __l); }
  248.   template <class _InputIterator>
  249.   hash_multiset(_InputIterator __f, _InputIterator __l, size_type __n,
  250.                 const hasher& __hf, const key_equal& __eql,
  251.                 const allocator_type& __a = allocator_type())
  252.     : _M_ht(__n, __hf, __eql, __a)
  253.     { _M_ht.insert_equal(__f, __l); }
  254. #else
  255.   hash_multiset(const value_type* __f, const value_type* __l)
  256.     : _M_ht(100, hasher(), key_equal(), allocator_type())
  257.     { _M_ht.insert_equal(__f, __l); }
  258.   hash_multiset(const value_type* __f, const value_type* __l, size_type __n)
  259.     : _M_ht(__n, hasher(), key_equal(), allocator_type())
  260.     { _M_ht.insert_equal(__f, __l); }
  261.   hash_multiset(const value_type* __f, const value_type* __l, size_type __n,
  262.                 const hasher& __hf)
  263.     : _M_ht(__n, __hf, key_equal(), allocator_type())
  264.     { _M_ht.insert_equal(__f, __l); }
  265.   hash_multiset(const value_type* __f, const value_type* __l, size_type __n,
  266.                 const hasher& __hf, const key_equal& __eql,
  267.                 const allocator_type& __a = allocator_type())
  268.     : _M_ht(__n, __hf, __eql, __a)
  269.     { _M_ht.insert_equal(__f, __l); }
  270.   hash_multiset(const_iterator __f, const_iterator __l)
  271.     : _M_ht(100, hasher(), key_equal(), allocator_type())
  272.     { _M_ht.insert_equal(__f, __l); }
  273.   hash_multiset(const_iterator __f, const_iterator __l, size_type __n)
  274.     : _M_ht(__n, hasher(), key_equal(), allocator_type())
  275.     { _M_ht.insert_equal(__f, __l); }
  276.   hash_multiset(const_iterator __f, const_iterator __l, size_type __n,
  277.                 const hasher& __hf)
  278.     : _M_ht(__n, __hf, key_equal(), allocator_type())
  279.     { _M_ht.insert_equal(__f, __l); }
  280.   hash_multiset(const_iterator __f, const_iterator __l, size_type __n,
  281.                 const hasher& __hf, const key_equal& __eql,
  282.                 const allocator_type& __a = allocator_type())
  283.     : _M_ht(__n, __hf, __eql, __a)
  284.     { _M_ht.insert_equal(__f, __l); }
  285. #endif /*__STL_MEMBER_TEMPLATES */
  286. public:
  287.   size_type size() const { return _M_ht.size(); }
  288.   size_type max_size() const { return _M_ht.max_size(); }
  289.   bool empty() const { return _M_ht.empty(); }
  290.   void swap(hash_multiset& hs) { _M_ht.swap(hs._M_ht); }
  291.   friend bool operator== __STL_NULL_TMPL_ARGS (const hash_multiset&,
  292.                                                const hash_multiset&);
  293.   iterator begin() const { return _M_ht.begin(); }
  294.   iterator end() const { return _M_ht.end(); }
  295. public:
  296.   iterator insert(const value_type& __obj)
  297.     { return _M_ht.insert_equal(__obj); }
  298. #ifdef __STL_MEMBER_TEMPLATES
  299.   template <class _InputIterator>
  300.   void insert(_InputIterator __f, _InputIterator __l) 
  301.     { _M_ht.insert_equal(__f,__l); }
  302. #else
  303.   void insert(const value_type* __f, const value_type* __l) {
  304.     _M_ht.insert_equal(__f,__l);
  305.   }
  306.   void insert(const_iterator __f, const_iterator __l) 
  307.     { _M_ht.insert_equal(__f, __l); }
  308. #endif /*__STL_MEMBER_TEMPLATES */
  309.   iterator insert_noresize(const value_type& __obj)
  310.     { return _M_ht.insert_equal_noresize(__obj); }    
  311.   iterator find(const key_type& __key) const { return _M_ht.find(__key); }
  312.   size_type count(const key_type& __key) const { return _M_ht.count(__key); }
  313.   
  314.   pair<iterator, iterator> equal_range(const key_type& __key) const
  315.     { return _M_ht.equal_range(__key); }
  316.   size_type erase(const key_type& __key) {return _M_ht.erase(__key); }
  317.   void erase(iterator __it) { _M_ht.erase(__it); }
  318.   void erase(iterator __f, iterator __l) { _M_ht.erase(__f, __l); }
  319.   void clear() { _M_ht.clear(); }
  320. public:
  321.   void resize(size_type __hint) { _M_ht.resize(__hint); }
  322.   size_type bucket_count() const { return _M_ht.bucket_count(); }
  323.   size_type max_bucket_count() const { return _M_ht.max_bucket_count(); }
  324.   size_type elems_in_bucket(size_type __n) const
  325.     { return _M_ht.elems_in_bucket(__n); }
  326. };
  327. template <class _Val, class _HashFcn, class _EqualKey, class _Alloc>
  328. inline bool 
  329. operator==(const hash_multiset<_Val,_HashFcn,_EqualKey,_Alloc>& __hs1,
  330.            const hash_multiset<_Val,_HashFcn,_EqualKey,_Alloc>& __hs2)
  331. {
  332.   return __hs1._M_ht == __hs2._M_ht;
  333. }
  334. #ifdef __STL_FUNCTION_TMPL_PARTIAL_ORDER
  335. template <class _Val, class _HashFcn, class _EqualKey, class _Alloc>
  336. inline void 
  337. swap(hash_multiset<_Val,_HashFcn,_EqualKey,_Alloc>& __hs1,
  338.      hash_multiset<_Val,_HashFcn,_EqualKey,_Alloc>& __hs2) {
  339.   __hs1.swap(__hs2);
  340. }
  341. #endif /* __STL_FUNCTION_TMPL_PARTIAL_ORDER */
  342. #if defined(__sgi) && !defined(__GNUC__) && (_MIPS_SIM != _MIPS_SIM_ABI32)
  343. #pragma reset woff 1174
  344. #pragma reset woff 1375
  345. #endif
  346. __STL_END_NAMESPACE
  347. #endif /* __SGI_STL_INTERNAL_HASH_SET_H */
  348. // Local Variables:
  349. // mode:C++
  350. // End: