当前位置:   article > 正文

新C++(11):unordered_map\set的封装_c++ 11 随机数 封装方法

c++ 11 随机数 封装方法

"假如可以让音乐停下来"

一、unordered_map\unordered_set简介

在C++98中,STL底层提供了以红黑树封装的关联式容器map\set,其查询效率可以达到LogN(以2为底)。而在C++11中,STL又提供了unordered(无序)容器,其使用方式与map\set类似,但其底层不是红黑树的数据结构,而是一种哈希结构。

unordered_set\unordered_map:
①unordered_set的存储设计为<Key>模型,而unordered_map存储的设计为<Key,Value>模型。
②它们都是以Key值 标识一个位置的映射值。
③它们不同于map、set可以顺序遍历,而是一种无序的存储结构。
④unordered_map容器通过key访问单个元素要比map快。但是,如果让哈希结构的unordered_map去查询一段子类集的范围,效率就不如map了。
⑤unordered_map只提供了前向迭代器。


二、哈希结构

Hash,是把任意长度的输入(又叫做预映射pre-image)通过"散列算法"( 哈希函数)变换成固定长度的输出,该输出就是 散列值。这种转换是一种压缩映射,也就是,散列值的空间通常远小于输入的空间,不同的输入可能会散列成相同的输出,所以不可能从散列值来确定唯一的输入值。简单的说就是一种将任意长度的消息压缩到某一固定长度的消息摘要的函数。 取自这里

哈希其实就是一种映射性的数据结构。如何设计好哈希结构,跟我们怎样选择、设计哈希函数息息相关。

常见的哈希函数有以下几种:
1.直接定址法。取关键字或关键字的某个线性函数值为散列地址。即H(key)=key或H(key) = a·key + b,其中a和b为常数(这种散列函数叫做自身函数)
2.平方取中法。取关键字平方后的中间几位作为散列地址。
3.随机数法。选择一随机函数,取关键字作为随机函数的种子生成随机值作为散列地址,通常用于关键字长度不同的场合。
4.除留余数法。取关键字被某个不大于散列表(空间)表长m的数p除后所得的余数为散列地址。
即 H(key) = key MOD p,p<=m。不仅可以对关键字直接取模,也可在折叠、平方取中等运算之后取模。对p的选择很重要,一般取素数或m,若p选的不好,容易产生碰撞。 取自这里

我们举一个小小的例子:


三、底层结构

多的不谈,我们现在来看看封装。不过在这之前,我们先来看看STL的源码库。

(1)HashData

HashData同上篇讲的红黑树结点Value一样,它们根本不关心你到底是传入的<Key,Value>模型,还是就是<Key>模型。

  1. template<class Value>
  2. struct HashTable_node
  3. {
  4. HashTable_node<Value>* _next;
  5. Value _data;
  6. };

(2)HashTable1

HashTable中的模板参数,与RBTree的模板参数类似,都是Key与Value。不过值得关注的是,哈希结构存储时,需要上层传入"哈希函数"。毕竟只有整数才能取模,如果上层的key是字符串类型呢??我们, 又该如何做?

哈希函数:

我们如何处理字符串类型的哈希函数结构?

但是如果子串字母顺序不一样,则映射到同一个值(这个也叫做"哈希冲突")。

关于字符串的哈希函数,有很多前辈们都提供了一定的方法函数。

我们就随便借一个来试试(更多的字符串哈希函数)。

  1. template<class K>
  2. struct HashFunc
  3. {
  4. size_t operator()(const K& key)
  5. {
  6. return key;
  7. }
  8. };
  9.    
  10.     //模板特化
  11. template<>
  12. struct HashFunc<std::string>
  13. {
  14. size_t operator()(const std::string& str)
  15. {
  16. size_t hash = 0;
  17. for (auto& e : str)
  18. {
  19. hash *= 131;
  20. hash += e;
  21. }
  22. return hash;
  23. }
  24. };

毕竟字符串等不是整数的类型是作为Key时的少数,大多数都是直接可以去key作为整数的取模。

我们就可以简单地搭一下HashTable的框架。

  1. template<class Value,class Key,class KeyOfValue,class Hash>
  2. class HashTable
  3. {
  4. public:
  5. typedef HashTable_node<Value> Node;
  6. private:
  7. std::vector<Node*> _tables; //哈希桶
  8. size_t n = 0; //有效个数
  9. };

(3)迭代器

同样,我们来看看源码。

opeartor++;

这样,我们也就完成了一个简单的迭代器。

  1. template<class Value, class Key, class KeyOfValue, class Hash>
  2. class HashTable;
  3. template<class Key,class Value,class KeyOfVal,class Hash>
  4. struct __HashIterator__
  5. {
  6. typedef HashTable_node<Value> Node;
  7. typedef HashTable<Key, Value, KeyOfVal, Hash> HT;
  8. HT* _ht;
  9. Node* _node;
  10. KeyOfVal kot;
  11. Hash hf;
  12. typedef __HashIterator__<Key, Value, KeyOfVal, Hash> Self;
  13. __HashIterator__(Node* node,HT* ht)
  14. :_node(node),
  15. _ht(ht)
  16. {}
  17. Value& operator*()
  18. {
  19. return _node->_data;
  20. }
  21. Value* operator->()
  22. {
  23. return &_node->_data;
  24. }
  25. bool operator!=(const Self& s)const
  26. {
  27. return _node != s._node;
  28. }
  29. bool operator==(const Self& s)const
  30. {
  31. return _node == s._node;
  32. }
  33. //前向迭代器
  34. Self& operator++()
  35. {
  36. if (_node->_next)
  37. {
  38. _node = _node->_next;
  39. }
  40. else
  41. {
  42. size_t hashi = hf(kot(_node->_data)) % _ht->_tables.size();
  43. hashi++;
  44. while (hashi < _ht->_tables.size())
  45. {
  46. if (_ht->_tables[hashi])
  47. {
  48. _node = _ht->_tables[hashi];
  49. break;
  50. }
  51. else
  52. {
  53. hashi++;
  54. }
  55. }
  56. //遍历完成
  57. if (hashi == _ht->_tables.size())
  58. _node = nullptr;
  59. }
  60. return *this;
  61. }
  62. };

取自《STL源码剖析》


(4)HashTable2

迭代器:

我们给原HashTable添入迭代器。

  1. typedef __HashIterator__<Value, Key, KeyOfValue, Hash> iterator;
  2.         iterator begin()
  3. {
  4. //返回第一个非空的HashData
  5. for (size_t i = 0;i < _tables.size();++i)
  6. {
  7. if (_tables[i])
  8. {
  9. return iterator(_tables[i], this);
  10. }
  11. }
  12. return iterator(nullptr, this);
  13. }
  14. iterator end()
  15. {
  16. return iterator(nullptr, this);
  17. }

Erase\find:

  1. iterator Find(const Key& key)
  2. {
  3. if (_n == 0) return end();
  4. //Key下标
  5. size_t hashi = Hash()(key) % _tables.size();
  6. Node* cur = _tables[hashi];
  7. while (cur)
  8. {
  9. if (KeyOfValue()(cur->_data) == key)
  10. {
  11. return iterator(cur, this);
  12. }
  13. else
  14. {
  15. cur = cur->_next;
  16. }
  17. }
  18. return end();
  19. }
  20. bool Erase(const Key& key)
  21. {
  22. size_t hashi = Hash()(KeyOfValue()(key)) % _tables.size();
  23. Node* cur = _tables[hashi];
  24. Node* prev = nullptr;
  25. while (cur)
  26. {
  27. if (KeyOfValue()(cur->_data) == key)
  28. {
  29. //1.头删
  30. if (cur == _tables[hashi])
  31. {
  32. _tables[hashi] = cur->_next;
  33. }
  34. else
  35. {
  36. //2.中间删
  37. prev->_next = cur->_next;
  38. }
  39. delete cur;
  40. --_n;
  41. return true;
  42. }
  43. else
  44. {
  45. //迭代
  46. prev = cur;
  47. cur = cur->_next;
  48. }
  49. }
  50. return false;
  51. }

这些功能逻辑简单,实现起来不是很复杂。不解释。

Insert:

面对扩容问题:

STL提供了一份素数表,用来开辟table的空间大小。

源码库:

  1. inline unsigned long __stl_next_prime(unsigned long n)
  2. {
  3. static const int __stl_num_primes = 28;
  4. static const unsigned long __stl_prime_list[__stl_num_primes] =
  5. {
  6. 53, 97, 193, 389, 769,
  7. 1543, 3079, 6151, 12289, 24593,
  8. 49157, 98317, 196613, 393241, 786433,
  9. 1572869, 3145739, 6291469, 12582917, 25165843,
  10. 50331653, 100663319, 201326611, 402653189, 805306457,
  11. 1610612741, 3221225473, 4294967291
  12. };
  13. for (int i = 0; i < __stl_num_primes; ++i)
  14. {
  15. if (__stl_prime_list[i] > n)
  16. {
  17. //返回 > n 的那next数组大小
  18. return __stl_prime_list[i];
  19. }
  20. }
  21. return __stl_prime_list[__stl_num_primes - 1];
  22. }

扩容:

  1. //扩容
  2. if (_n == _tables.size())
  3. {
  4. std::vector<Node*> newtable;
  5. newtable.resize(__stl_next_prime(_tables.size(),nullptr);
  6. //计算节点并拷贝
  7. for (int i = 0;i < _tables.size();++i)
  8. {
  9. Node* cur = _tables[i];
  10. //处理一个桶里的 链表
  11. while (cur)
  12. {
  13. Node* next = cur->_next;
  14.                         //重新计算hashi
  15. size_t hashi = Hash()(KeyOfValue()(cur->_data)) % newtable.size();
  16. //头插
  17. cur->_next = newtable[hashi];
  18. newtable[hashi] = cur;
  19. cur = next;
  20. }
  21. _tables[i] = nullptr;
  22. }
  23. //交换
  24. _tables.swap(newtable);
  25. }

插入:

  1. std::pair<iterator, bool> Insert(const Value& data)
  2. {
  3. iterator it = Find(KeyOfValue()(data));
  4. if (it != end())
  5. {
  6. return std::make_pair(it, false);
  7. }
  8.             
  9.             ///..扩容
  10.         size_t hashi = Hash()(KeyOfValue()(data)) % _tables.size();
  11. Node* newnode = new Node(data);
  12. //头插
  13. newnode->_next = _tables[hashi];
  14. _tables[hashi] = newnode;
  15. ++_n;
  16. return std::make_pair(iterator(newnode,this), true);
  17.         }   

四、unordered_map\unordered_set封装

当把unordered_map\unordered_set底层的架子搭好后,我们现在可以来对它们进行封装了。

unordered_map;

  1. template<class K,class V,class Hash = HashFunc<K>>
  2. class unordered_map
  3. {
  4. struct MapOfKey
  5. {
  6. const K& operator()(const std::pair<K, V>& kv)
  7. {
  8. return kv.first;
  9. }
  10. };
  11. public:
  12. typedef typename dy_OpenHash::HashTable<K, std::pair<const K, V>, MapOfKey, Hash>::iterator iterator;
  13. iterator begin()
  14. {
  15. return _ht.begin();
  16. }
  17. iterator end()
  18. {
  19. return _ht.end();
  20. }
  21. std::pair<iterator, bool> insert(const std::pair<K, V>& data)
  22. {
  23. return _ht.Insert(data);
  24. }
  25. V& operator[](const K& key)
  26. {
  27. //pair<iterator,bool> ret
  28. auto ret = _ht.Insert(std::make_pair(key,V()));
  29. return ret.first->second;
  30. }
  31. private:
  32. dy_OpenHash::HashTable<K, std::pair<const K,V>, MapOfKey, Hash> _ht;
  33. };

unordered_set;

  1. template<class K,class Hash = HashFunc<K>>
  2. class unordered_set
  3. {
  4. struct SetOfKey
  5. {
  6. const K& operator()(const K& key)
  7. {
  8. return key;
  9. }
  10. };
  11. public:
  12. typedef typename dy_OpenHash::HashTable<K, K, SetOfKey, Hash>::iterator iterator;
  13. iterator begin()
  14. {
  15. return _ht.begin();
  16. }
  17. iterator end()
  18. {
  19. return _ht.end();
  20. }
  21. std::pair<iterator, bool> insert(const K& key)
  22. {
  23. return _ht.Insert(key);
  24. }
  25. private:
  26. dy_OpenHash::HashTable<K, K, SetOfKey, Hash> _ht;
  27. };

这里也不多解释,和Mapset差不多。

测试:

那么它们封装后的测试也能行得通。差不多最后的"工程"也就结束了。


最后留了一个小问题:

为什么unordered_map\unordered_set const迭代器没有复用普通迭代器?

本篇到此结束,感谢你的阅读。

祝你好运,向阳而生~

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号