当前位置:   article > 正文

C++:哈希结构(内含unordered_set和unordered_map实现)_c++有没有类似hashtable结构

c++有没有类似hashtable结构

unordered系列关联式容器

在C++98中,STL提供了底层为红黑树结构的一系列关联式容器,在查询时效率可达到$log_2 N$,即最差情况下需要比较红黑树的高度次,当树中的节点非常多时,查询效率也不理想。最好 的查询是,进行很少的比较次数就能够将元素找到,因此在C++11中,STL又提供了4个 unordered系列的关联式容器,这四个容器与红黑树结构的关联式容器使用方式基本类似,只是 其底层结构不同,本文中只对unordered_map和unordered_set进行介绍。

unordered_map和unordered_set的文档介绍

1. unordered_map是存储键值对的关联式容器,其允许通过keys快速的索引到与 其对应的value。

2. 在unordered_map中,键值通常用于惟一地标识元素,而映射值是一个对象,其内容与此 键关联。键和映射值的类型可能不同。

3. 在内部,unordered_map没有对按照任何特定的顺序排序, 为了能在常数范围内 找到key所对应的value,unordered_map将相同哈希值的键值对放在相同的桶中。

4. unordered_map容器通过key访问单个元素要比map快,但它通常在遍历元素子集的范围迭 代方面效率较低。

5. unordered_maps实现了直接访问操作符(operator[]),它允许使用key作为参数直接访问 value。

6. 它的迭代器至少是前向迭代器。

详情可以参考文档:

https://cplusplus.com/reference/unordered_set/unordered_set/?kw=unordered_set

底层结构

unordered系列的关联式容器之所以效率比较高,是因为其底层使用了哈希结构。

哈希概念

顺序结构以及平衡树中,元素关键码与其存储位置之间没有对应的关系,因此在查找一个元素 时,必须要经过关键码的多次比较。顺序查找时间复杂度为O(N),平衡树中为树的高度,即 O($log_2 N$),搜索的效率取决于搜索过程中元素的比较次数。

理想的搜索方法:可以不经过任何比较,一次直接从表中得到要搜索的元素。 如果构造一种存储结构,通过某种函数(hashFunc)使元素的存储位置与它的关键码之间能够建立 一一映射的关系,那么在查找时通过该函数可以很快找到该元素。

当向该结构中:

插入元素

        根据待插入元素的关键码,以此函数计算出该元素的存储位置并按此位置进行存放

搜索元素

        对元素的关键码进行同样的计算,把求得的函数值当做元素的存储位置,在结构中按此位置 取元素比较,若关键码相等,则搜索成功

该方式即为哈希(散列)方法,哈希方法中使用的转换函数称为哈希(散列)函数,构造出来的结构称 为哈希表(Hash Table)(或者称散列表)

例如:数据集合{1,7,6,4,5,9};

哈希函数设置为:hash(key) = key % capacity;

capacity为存储元素底层空间总的大小。

常见哈希函数

1. 直接定址法--(常用)

取关键字的某个线性函数为散列地址:Hash(Key)= A*Key + B 优点:简单、均匀 缺点:需要事先知道关键字的分布情况 使用场景:适合查找比较小且连续的情况 面试题:字符串中第一个只出现一次字符

2. 除留余数法--(常用)

设散列表中允许的地址数为m,取一个不大于m,但最接近或者等于m的质数p作为除数, 按照哈希函数:Hash(key) = key% p(p<=m),将关键码转换成哈希地址

3. 平方取中法--(了解)

假设关键字为1234,对它平方就是1522756,抽取中间的3位227作为哈希地址; 再比如关键字为4321,对它平方就是18671041,抽取中间的3位671(或710)作为哈希地址 平方取中法比较适合:不知道关键字的分布,而位数又不是很大的情况

直接定址法,需要是整型,且范围需要高度集中,除留余数法正是为了突破直接定址法的局限才被提出来,但是也引入了新的问题——哈希冲突。

注意:哈希函数设计的越精妙,产生哈希冲突的可能性就越低,但是无法避免哈希冲突。

哈希冲突

解决哈希冲突两种常见的方法是:闭散列和开散列

1. 开放地址法(闭散列) ,节点中含状态, 不能满,插入时要计算负载因子

2. 哈希桶/拉链法(开散列) 

如果不是整型,映射地址需要引入仿函数。

闭散列最大的缺陷就是空间利用率比较低,这也是哈希的缺陷。

闭散列实现

  1. #pragma once
  2. #include<iostream>
  3. #include<vector>
  4. #include<string>
  5. using namespace std;
  6. template<class K>
  7. struct HashFunc
  8. {
  9. size_t operator()(const K& k)
  10. {
  11. return (size_t)k;
  12. }
  13. };
  14. template<>
  15. struct HashFunc<string>
  16. {
  17. size_t operator()(const string& k)
  18. {
  19. size_t ret = 0;
  20. for (const auto& e : k)
  21. {
  22. ret *= 131;
  23. ret += e;
  24. }
  25. return ret;
  26. }
  27. };
  28. namespace HashClose
  29. {
  30. enum state
  31. {
  32. EXIST,
  33. DELETE,
  34. EMPTY,
  35. };
  36. template<class K, class V>
  37. struct HashNode
  38. {
  39. pair<K, V> _kv;
  40. state _sta = EMPTY;
  41. };
  42. template<class K, class V, class Hash = HashFunc<K>>
  43. class HashTable
  44. {
  45. public:
  46. typedef HashNode<K, V> Node;
  47. HashTable()
  48. :_table(10)
  49. ,_n(0)
  50. {}
  51. Node* find(const K& k)
  52. {
  53. Hash hf;
  54. size_t hashi = hf(k) % _table.size();
  55. while (EMPTY != _table[hashi]._sta)
  56. {
  57. if (EXIST == _table[hashi]._sta && k == _table[hashi]._kv.first)
  58. {
  59. return &_table[hashi];
  60. }
  61. ++hashi;
  62. hashi %= _table.size();
  63. }
  64. return nullptr;
  65. }
  66. bool insert(const pair<K, V>& kv)
  67. {
  68. if (find(kv.first))
  69. {
  70. return false;
  71. }
  72. if (1.0 * _n / _table.size() >= 0.7)
  73. {
  74. HashTable newtable;
  75. newtable._table.resize(2 * _table.size());
  76. for(const auto& e : _table)
  77. {
  78. newtable.insert(e._kv);
  79. }
  80. _table.swap(newtable._table);
  81. }
  82. Hash hf;
  83. size_t hashi = hf(kv.first) % _table.size();
  84. while (EMPTY != _table[hashi]._sta)
  85. {
  86. ++hashi;
  87. hashi %= _table.size();
  88. }
  89. _table[hashi]._sta = EXIST;
  90. _table[hashi]._kv = kv;
  91. ++ _n;
  92. }
  93. bool erase(const K& key)
  94. {
  95. Node* ret = find(key);
  96. if (ret)
  97. {
  98. ret->_sta = DELETE;
  99. --_n;
  100. return true;
  101. }
  102. else
  103. {
  104. return false;
  105. }
  106. }
  107. private:
  108. vector<HashNode<K, V>> _table;
  109. size_t _n;
  110. };
  111. void testht1()
  112. {
  113. HashTable<int, int> ht;
  114. int a[] = { 18, 8, 7, 27, 57, 3, 38, 18 };
  115. for (auto e : a)
  116. {
  117. ht.insert(make_pair(e, e));
  118. }
  119. ht.insert(make_pair(17, 17));
  120. ht.insert(make_pair(5, 5));
  121. cout << ht.find(7) << endl;
  122. cout << ht.find(8) << endl;
  123. ht.erase(7);
  124. cout << ht.find(7) << endl;
  125. cout << ht.find(8) << endl;
  126. }
  127. void testht2()
  128. {
  129. string arr[] = { "苹果", "西瓜", "香蕉", "草莓", "苹果", "西瓜", "苹果", "苹果", "西瓜", "苹果", "香蕉", "苹果", "香蕉" };
  130. //HashTable<string, int, HashFuncString> countHT;
  131. HashTable<string, int> countHT;
  132. for (auto& e : arr)
  133. {
  134. HashNode<string, int>* ret = countHT.find(e);
  135. if (ret)
  136. {
  137. ret->_kv.second++;
  138. }
  139. else
  140. {
  141. countHT.insert(make_pair(e, 1));
  142. }
  143. }
  144. HashFunc<string> hf;
  145. cout << hf("abc") << endl;
  146. cout << hf("bac") << endl;
  147. cout << hf("cba") << endl;
  148. cout << hf("aad") << endl;
  149. }
  150. }

开散列

        开散列法又叫链地址法(开链法),首先对关键码集合用散列函数计算散列地址,具有相同地 址的关键码归于同一子集合,每一个子集合称为一个桶,各个桶中的元素通过一个单链表链 接起来,各链表的头结点存储在哈希表中。

 从上图可以看出,开散列中每个桶中放的都是发生哈希冲突的元素。

由于是一个数组下挂哈希桶,需要delete释放节点,需要写析构函数。

插入时头插。

扩容时旧节点重复利用

删除时与头节点交换,头删(也可以遍历直接删)

扩容时可以使容量为素数,以减少冲突

极端场景下,如果一个桶冲突过多,下面可以挂一个红黑树

开散列实现

  1. namespace Hashbucket
  2. {
  3. template<class T>
  4. struct HashNode
  5. {
  6. HashNode(const T& t)
  7. :_date(t)
  8. ,_next(nullptr)
  9. {}
  10. T _date;
  11. HashNode<T>* _next;
  12. };
  13. template<class K, class V, class Hash, class KeyOfV>
  14. class HashTable;
  15. template<class K, class V,class Ref,
  16. class Ptr, class Hash, class KeyOfV,
  17. class HTPTR, class HNPTR>
  18. struct HashIterator
  19. {
  20. typedef HashIterator<K, V, Ref, Ptr, Hash, KeyOfV, HTPTR, HNPTR> Self;
  21. typedef HashIterator<K, V, V&, V*, Hash, KeyOfV,
  22. HashTable<K, V, Hash, KeyOfV>*, HashNode<V>*> Iterator;
  23. HTPTR _ht;
  24. HNPTR _hn;
  25. HashIterator(HTPTR ht, HNPTR hn)
  26. :_ht(ht)
  27. ,_hn(hn)
  28. {}
  29. HashIterator(const Iterator& it)
  30. :_ht(it._ht)
  31. , _hn(it._hn)
  32. {}
  33. Ref operator*()
  34. {
  35. return _hn->_date;
  36. }
  37. Ptr operator->()
  38. {
  39. return &(_hn->_date);
  40. }
  41. Self& operator++()
  42. {
  43. if (_hn->_next)
  44. {
  45. _hn = _hn->_next;
  46. }
  47. else
  48. {
  49. KeyOfV kov;
  50. size_t hashi = Hash()(kov(_hn->_date)) % _ht->_table.size();
  51. while (++hashi < _ht->_table.size())
  52. {
  53. if (_ht->_table[hashi])
  54. {
  55. _hn = _ht->_table[hashi];
  56. return *this;
  57. }
  58. }
  59. _hn = nullptr;
  60. }
  61. return *this;
  62. }
  63. bool operator!=(const Self& it)const
  64. {
  65. return it._hn != _hn;
  66. }
  67. };
  68. template<class K, class V, class Hash, class KeyOfV>
  69. class HashTable
  70. {
  71. public:
  72. template<class K, class V, class Ref, class Ptr, class Hash, class KeyOfV, class HTPTR, class HNPTR>
  73. friend struct HashIterator;
  74. typedef HashTable<K, V, Hash, KeyOfV> Self;
  75. typedef HashNode<V> Node;
  76. typedef HashIterator<K, V, V&, V*, Hash, KeyOfV, Self*, Node*> iterator;
  77. typedef HashIterator<K, V, const V&, const V*, Hash, KeyOfV, const Self*, const Node*> const_iterator;
  78. //默认构造
  79. HashTable()
  80. :_n(0)
  81. {
  82. _table.resize(9, nullptr);
  83. }
  84. HashTable(const Self& ht)
  85. :_n(0)
  86. {
  87. _table.resize(9, nullptr);
  88. for (const auto& e : ht)
  89. {
  90. insert(e);
  91. }
  92. }
  93. iterator begin()
  94. {
  95. for (int i = 0; i < _table.size(); ++i)
  96. {
  97. if (_table[i])
  98. {
  99. return iterator(this, _table[i]);
  100. }
  101. }
  102. return iterator(this, nullptr);
  103. }
  104. iterator end()
  105. {
  106. return iterator(this, nullptr);
  107. }
  108. const_iterator begin()const
  109. {
  110. for (int i = 0; i < _table.size(); ++i)
  111. {
  112. if (_table[i])
  113. {
  114. return const_iterator(this, _table[i]);
  115. }
  116. }
  117. return const_iterator(this, nullptr);
  118. }
  119. const_iterator end()const
  120. {
  121. return const_iterator(this, nullptr);
  122. }
  123. iterator find(const K& key)
  124. {
  125. Hash hs;
  126. KeyOfV kot;
  127. size_t hashi = hs(key) % _table.size();
  128. Node* cur = _table[hashi];
  129. while (cur)
  130. {
  131. if (key == kot(cur->_date))
  132. {
  133. return iterator(this, cur);
  134. }
  135. cur = cur->_next;
  136. }
  137. return end();
  138. }
  139. //找到下一个要扩容的尺寸
  140. inline unsigned long __stl_next_prime(unsigned long n)
  141. {
  142. static const int __stl_num_primes = 28;
  143. static const unsigned long __stl_prime_list[__stl_num_primes] =
  144. {
  145. 53, 97, 193, 389, 769,
  146. 1543, 3079, 6151, 12289, 24593,
  147. 49157, 98317, 196613, 393241, 786433,
  148. 1572869, 3145739, 6291469, 12582917, 25165843,
  149. 50331653, 100663319, 201326611, 402653189, 805306457,
  150. 1610612741, 3221225473, 4294967291
  151. };
  152. for (int i = 0; i < __stl_num_primes; ++i)
  153. {
  154. if (__stl_prime_list[i] > n)
  155. {
  156. return __stl_prime_list[i];
  157. }
  158. }
  159. return __stl_prime_list[__stl_num_primes - 1];
  160. }
  161. pair<iterator, bool> insert(const V& v)
  162. {
  163. KeyOfV kot;
  164. //已经存在,不需要插入
  165. iterator it = find(kot(v));
  166. if (end() != it)
  167. {
  168. return make_pair(it, false);
  169. }
  170. Hash hs;
  171. //负载因子超过1 -> 扩容
  172. if(_n == _table.size())
  173. {
  174. vector<Node*> newtable;
  175. newtable.resize(__stl_next_prime(_table.size()), nullptr);
  176. for (int i = 0; i < _table.size(); ++i)
  177. {
  178. Node* cur = _table[i];
  179. _table[i] = nullptr;
  180. Node* pre = nullptr;
  181. while (cur)
  182. {
  183. size_t hashi = hs(kot(cur->_date)) % newtable.size();
  184. pre = cur;
  185. cur = cur->_next;
  186. pre-> _next = newtable[hashi];
  187. newtable[hashi] = pre;
  188. }
  189. }
  190. newtable.swap(_table);
  191. }
  192. //插入新节点
  193. size_t hashi = hs(kot(v)) % _table.size();
  194. Node* newnode = new Node(v);
  195. newnode->_next = _table[hashi];
  196. _table[hashi] = newnode;
  197. ++_n;
  198. return make_pair(iterator(this, newnode), true);
  199. }
  200. private:
  201. vector<Node*> _table;
  202. size_t _n;
  203. };
  204. }

unordered_set和unordered_map

  1. #pragma once
  2. #include"hash.h"
  3. namespace szg
  4. {
  5. template<class K, class Hash = HashFunc<K>>
  6. class unordered_set
  7. {
  8. public:
  9. struct setKeyOfV
  10. {
  11. const K& operator()(const K& k)
  12. {
  13. return k;
  14. }
  15. };
  16. typedef typename Hashbucket::HashTable<K, K, HashFunc<K>, setKeyOfV>::const_iterator iterator;
  17. typedef typename Hashbucket::HashTable<K, K, HashFunc<K>, setKeyOfV>::const_iterator const_iterator;
  18. iterator begin()
  19. {
  20. return _ht.begin();
  21. }
  22. iterator end()
  23. {
  24. return _ht.end();
  25. }
  26. pair<iterator, bool> insert(const K& key)
  27. {
  28. return _ht.insert(key);
  29. }
  30. private:
  31. Hashbucket::HashTable<K, K, HashFunc<K>, setKeyOfV> _ht;
  32. };
  33. }
  1. #pragma once
  2. #include"hash.h"
  3. namespace szg
  4. {
  5. template<class K, class V, class Hash = HashFunc<K>>
  6. class unordered_map
  7. {
  8. public:
  9. struct mapKeyOfV
  10. {
  11. const K& operator()(const pair<const K, V>& v)
  12. {
  13. return v.first;
  14. }
  15. };
  16. typedef typename Hashbucket::HashTable<K, pair<const K, V>, HashFunc<K>, mapKeyOfV>::iterator iterator;
  17. typedef typename Hashbucket::HashTable<K, pair<const K, V>, HashFunc<K>, mapKeyOfV>::const_iterator const_iterator;
  18. iterator begin()
  19. {
  20. return _ht.begin();
  21. }
  22. iterator end()
  23. {
  24. return _ht.end();
  25. }
  26. pair<iterator, bool> insert(const K& key)
  27. {
  28. return _ht.insert(key);
  29. }
  30. V& operator[](const K& key)
  31. {
  32. pair<iterator, bool> ret = _ht.insert(make_pair(key, V()));
  33. return ret.first->second;
  34. }
  35. private:
  36. Hashbucket::HashTable<K, pair<const K, V>, HashFunc<K>, mapKeyOfV> _ht;
  37. };
  38. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Gausst松鼠会/article/detail/471934?site
推荐阅读
相关标签
  

闽ICP备14008679号