练习37:哈希表

原文:Exercise 37: Hashmaps

译者:飞龙

哈希表(HashMapHashTable以及Dictionary)广泛用于许多动态编程语言来储存键值对的数据。哈希表通过在键上执行“哈希”运算产生整数,之后使用它来寻找相应的桶来获取或储存值。它是非常快速的使用数据结构,因为它适用于任何数据并且易于实现。

下面是哈希表(也叫作字典)的一个使用示例:

  1. fruit_weights = {'Apples': 10, 'Oranges': 100, 'Grapes': 1.0}
  2. for key, value in fruit_weights.items():
  3. print key, "=", value

几乎所有现代语言都具备这种特性,所以许多人写完代码都不知道它实际上如何工作。通过在C中创建Hashmap数据结构,我会向你展示它的工作原理。我会从头文件开始,来谈论整个数据结构。

  1. #ifndef _lcthw_Hashmap_h
  2. #define _lcthw_Hashmap_h
  3. #include <stdint.h>
  4. #include <lcthw/darray.h>
  5. #define DEFAULT_NUMBER_OF_BUCKETS 100
  6. typedef int (*Hashmap_compare)(void *a, void *b);
  7. typedef uint32_t (*Hashmap_hash)(void *key);
  8. typedef struct Hashmap {
  9. DArray *buckets;
  10. Hashmap_compare compare;
  11. Hashmap_hash hash;
  12. } Hashmap;
  13. typedef struct HashmapNode {
  14. void *key;
  15. void *data;
  16. uint32_t hash;
  17. } HashmapNode;
  18. typedef int (*Hashmap_traverse_cb)(HashmapNode *node);
  19. Hashmap *Hashmap_create(Hashmap_compare compare, Hashmap_hash);
  20. void Hashmap_destroy(Hashmap *map);
  21. int Hashmap_set(Hashmap *map, void *key, void *data);
  22. void *Hashmap_get(Hashmap *map, void *key);
  23. int Hashmap_traverse(Hashmap *map, Hashmap_traverse_cb traverse_cb);
  24. void *Hashmap_delete(Hashmap *map, void *key);
  25. #endif

这个结构就是Hashmap,含有许多HashmapNode节点。观察Hashmap你会看到它类似这样:

DArray *buckets

一个动态数组,设置为100个桶的固定大小。每个桶会含有一个DArray,来实际存档HashmapNode对。

Hashmap_compare compare

这是一个比较函数,被Hashmap用于实际用过键寻找元素。它应该和其它的比较函数类似,并且默认设置为bstrcmp来比较字符串。

Hashmap_hash

这是哈希函数,它用于接收键,处理它的内容,之后产生一个uint32_t索引数值。之后你会看到默认的实现。

这些告诉了你数据如何存储,但是用作bucketsDArray还没有创建。要记住它具有二层结构;

  • 第一层有100个桶,数据基于它们的哈希值储存在桶中。
  • 每个桶都是一个DArray,其中含有HashmapNode,添加时只是简单地附加到末尾。

HashMapNode由下面三个元素组成:

void *key

键值对的键。

void *value

键值对的值。

uint32_t hash

计算出的哈希值,它用于使查找该节点更加迅速,只要判断键是否相等。

有文件的剩余部分没有新的东西,所以我现在可以向你展示hashmap.c的实现了:

  1. #undef NDEBUG
  2. #include <stdint.h>
  3. #include <lcthw/hashmap.h>
  4. #include <lcthw/dbg.h>
  5. #include <lcthw/bstrlib.h>
  6. static int default_compare(void *a, void *b)
  7. {
  8. return bstrcmp((bstring)a, (bstring)b);
  9. }
  10. /**
  11. * Simple Bob Jenkins's hash algorithm taken from the
  12. * wikipedia description.
  13. */
  14. static uint32_t default_hash(void *a)
  15. {
  16. size_t len = blength((bstring)a);
  17. char *key = bdata((bstring)a);
  18. uint32_t hash = 0;
  19. uint32_t i = 0;
  20. for(hash = i = 0; i < len; ++i)
  21. {
  22. hash += key[i];
  23. hash += (hash << 10);
  24. hash ^= (hash >> 6);
  25. }
  26. hash += (hash << 3);
  27. hash ^= (hash >> 11);
  28. hash += (hash << 15);
  29. return hash;
  30. }
  31. Hashmap *Hashmap_create(Hashmap_compare compare, Hashmap_hash hash)
  32. {
  33. Hashmap *map = calloc(1, sizeof(Hashmap));
  34. check_mem(map);
  35. map->compare = compare == NULL ? default_compare : compare;
  36. map->hash = hash == NULL ? default_hash : hash;
  37. map->buckets = DArray_create(sizeof(DArray *), DEFAULT_NUMBER_OF_BUCKETS);
  38. map->buckets->end = map->buckets->max; // fake out expanding it
  39. check_mem(map->buckets);
  40. return map;
  41. error:
  42. if(map) {
  43. Hashmap_destroy(map);
  44. }
  45. return NULL;
  46. }
  47. void Hashmap_destroy(Hashmap *map)
  48. {
  49. int i = 0;
  50. int j = 0;
  51. if(map) {
  52. if(map->buckets) {
  53. for(i = 0; i < DArray_count(map->buckets); i++) {
  54. DArray *bucket = DArray_get(map->buckets, i);
  55. if(bucket) {
  56. for(j = 0; j < DArray_count(bucket); j++) {
  57. free(DArray_get(bucket, j));
  58. }
  59. DArray_destroy(bucket);
  60. }
  61. }
  62. DArray_destroy(map->buckets);
  63. }
  64. free(map);
  65. }
  66. }
  67. static inline HashmapNode *Hashmap_node_create(int hash, void *key, void *data)
  68. {
  69. HashmapNode *node = calloc(1, sizeof(HashmapNode));
  70. check_mem(node);
  71. node->key = key;
  72. node->data = data;
  73. node->hash = hash;
  74. return node;
  75. error:
  76. return NULL;
  77. }
  78. static inline DArray *Hashmap_find_bucket(Hashmap *map, void *key,
  79. int create, uint32_t *hash_out)
  80. {
  81. uint32_t hash = map->hash(key);
  82. int bucket_n = hash % DEFAULT_NUMBER_OF_BUCKETS;
  83. check(bucket_n >= 0, "Invalid bucket found: %d", bucket_n);
  84. *hash_out = hash; // store it for the return so the caller can use it
  85. DArray *bucket = DArray_get(map->buckets, bucket_n);
  86. if(!bucket && create) {
  87. // new bucket, set it up
  88. bucket = DArray_create(sizeof(void *), DEFAULT_NUMBER_OF_BUCKETS);
  89. check_mem(bucket);
  90. DArray_set(map->buckets, bucket_n, bucket);
  91. }
  92. return bucket;
  93. error:
  94. return NULL;
  95. }
  96. int Hashmap_set(Hashmap *map, void *key, void *data)
  97. {
  98. uint32_t hash = 0;
  99. DArray *bucket = Hashmap_find_bucket(map, key, 1, &hash);
  100. check(bucket, "Error can't create bucket.");
  101. HashmapNode *node = Hashmap_node_create(hash, key, data);
  102. check_mem(node);
  103. DArray_push(bucket, node);
  104. return 0;
  105. error:
  106. return -1;
  107. }
  108. static inline int Hashmap_get_node(Hashmap *map, uint32_t hash, DArray *bucket, void *key)
  109. {
  110. int i = 0;
  111. for(i = 0; i < DArray_end(bucket); i++) {
  112. debug("TRY: %d", i);
  113. HashmapNode *node = DArray_get(bucket, i);
  114. if(node->hash == hash && map->compare(node->key, key) == 0) {
  115. return i;
  116. }
  117. }
  118. return -1;
  119. }
  120. void *Hashmap_get(Hashmap *map, void *key)
  121. {
  122. uint32_t hash = 0;
  123. DArray *bucket = Hashmap_find_bucket(map, key, 0, &hash);
  124. if(!bucket) return NULL;
  125. int i = Hashmap_get_node(map, hash, bucket, key);
  126. if(i == -1) return NULL;
  127. HashmapNode *node = DArray_get(bucket, i);
  128. check(node != NULL, "Failed to get node from bucket when it should exist.");
  129. return node->data;
  130. error: // fallthrough
  131. return NULL;
  132. }
  133. int Hashmap_traverse(Hashmap *map, Hashmap_traverse_cb traverse_cb)
  134. {
  135. int i = 0;
  136. int j = 0;
  137. int rc = 0;
  138. for(i = 0; i < DArray_count(map->buckets); i++) {
  139. DArray *bucket = DArray_get(map->buckets, i);
  140. if(bucket) {
  141. for(j = 0; j < DArray_count(bucket); j++) {
  142. HashmapNode *node = DArray_get(bucket, j);
  143. rc = traverse_cb(node);
  144. if(rc != 0) return rc;
  145. }
  146. }
  147. }
  148. return 0;
  149. }
  150. void *Hashmap_delete(Hashmap *map, void *key)
  151. {
  152. uint32_t hash = 0;
  153. DArray *bucket = Hashmap_find_bucket(map, key, 0, &hash);
  154. if(!bucket) return NULL;
  155. int i = Hashmap_get_node(map, hash, bucket, key);
  156. if(i == -1) return NULL;
  157. HashmapNode *node = DArray_get(bucket, i);
  158. void *data = node->data;
  159. free(node);
  160. HashmapNode *ending = DArray_pop(bucket);
  161. if(ending != node) {
  162. // alright looks like it's not the last one, swap it
  163. DArray_set(bucket, i, ending);
  164. }
  165. return data;
  166. }

这个实现中并没有什么复杂的东西,但是default_hashHashmap_find_bucket需要一些解释。当你使用Hashmap_create时,你可以传入任何定制的比较和哈希函数。但是如果你没有则会使用default_comparedefault_hash函数。

需要观察的第一件事,是default_hash的行为。这是一个简单的哈希函数,叫做“Jenkins hash”,以Bob Jenkins的名字命名。我从维基百科上获得了这个算法。它仅仅遍历键(bstring)的每个字节来计算哈希,以便得出uint32_t的结果。它使用一些加法和异或运算来实现。

哈希函数有很多中,它们具有不同的特性,然而一旦你选择了一种,就需要一种方法来使用它找到正确的桶。Hashmap_find_bucket像这样实现它:

  • 首先调用map->hash(key)来获得键的哈希值。
  • 之后使用hash % DEFAULT_NUMBER_OF_BUCKETS,这样无论哈希值有多大,都能找到匹配的桶。
  • 找到桶之后,它是个DArray,可能还没有创建,这取决与create变量的内容。
  • 一旦找到了正确的DArray桶,就会将它返回,并且hash_out变量用于向调用者提供所找到的哈希值。

其它函数都使用Hashmap_find_bucket来完成工作:

  • 设置键值对涉及到找到正确的桶,之后创建HashmapNode,将它添加到桶中。
  • 获取键值涉及到找到正确的桶,之后找到匹配hashkeyHashmapNode
  • 删除元素也需要找到正确的桶,找到所需的节点,之后通过与末尾的节点交换位置来删除。

你需要学习的唯一一个其他函数是Hashmap_travers,它仅仅遍历每个桶,对于任何含有值的桶,在每个值上调用traverse_cb。这就是扫描整个Hashmap的办法。

单元测试

最后你需要编写单元测试,对于所有这些操作:

  1. #include "minunit.h"
  2. #include <lcthw/hashmap.h>
  3. #include <assert.h>
  4. #include <lcthw/bstrlib.h>
  5. Hashmap *map = NULL;
  6. static int traverse_called = 0;
  7. struct tagbstring test1 = bsStatic("test data 1");
  8. struct tagbstring test2 = bsStatic("test data 2");
  9. struct tagbstring test3 = bsStatic("xest data 3");
  10. struct tagbstring expect1 = bsStatic("THE VALUE 1");
  11. struct tagbstring expect2 = bsStatic("THE VALUE 2");
  12. struct tagbstring expect3 = bsStatic("THE VALUE 3");
  13. static int traverse_good_cb(HashmapNode *node)
  14. {
  15. debug("KEY: %s", bdata((bstring)node->key));
  16. traverse_called++;
  17. return 0;
  18. }
  19. static int traverse_fail_cb(HashmapNode *node)
  20. {
  21. debug("KEY: %s", bdata((bstring)node->key));
  22. traverse_called++;
  23. if(traverse_called == 2) {
  24. return 1;
  25. } else {
  26. return 0;
  27. }
  28. }
  29. char *test_create()
  30. {
  31. map = Hashmap_create(NULL, NULL);
  32. mu_assert(map != NULL, "Failed to create map.");
  33. return NULL;
  34. }
  35. char *test_destroy()
  36. {
  37. Hashmap_destroy(map);
  38. return NULL;
  39. }
  40. char *test_get_set()
  41. {
  42. int rc = Hashmap_set(map, &test1, &expect1);
  43. mu_assert(rc == 0, "Failed to set &test1");
  44. bstring result = Hashmap_get(map, &test1);
  45. mu_assert(result == &expect1, "Wrong value for test1.");
  46. rc = Hashmap_set(map, &test2, &expect2);
  47. mu_assert(rc == 0, "Failed to set test2");
  48. result = Hashmap_get(map, &test2);
  49. mu_assert(result == &expect2, "Wrong value for test2.");
  50. rc = Hashmap_set(map, &test3, &expect3);
  51. mu_assert(rc == 0, "Failed to set test3");
  52. result = Hashmap_get(map, &test3);
  53. mu_assert(result == &expect3, "Wrong value for test3.");
  54. return NULL;
  55. }
  56. char *test_traverse()
  57. {
  58. int rc = Hashmap_traverse(map, traverse_good_cb);
  59. mu_assert(rc == 0, "Failed to traverse.");
  60. mu_assert(traverse_called == 3, "Wrong count traverse.");
  61. traverse_called = 0;
  62. rc = Hashmap_traverse(map, traverse_fail_cb);
  63. mu_assert(rc == 1, "Failed to traverse.");
  64. mu_assert(traverse_called == 2, "Wrong count traverse for fail.");
  65. return NULL;
  66. }
  67. char *test_delete()
  68. {
  69. bstring deleted = (bstring)Hashmap_delete(map, &test1);
  70. mu_assert(deleted != NULL, "Got NULL on delete.");
  71. mu_assert(deleted == &expect1, "Should get test1");
  72. bstring result = Hashmap_get(map, &test1);
  73. mu_assert(result == NULL, "Should delete.");
  74. deleted = (bstring)Hashmap_delete(map, &test2);
  75. mu_assert(deleted != NULL, "Got NULL on delete.");
  76. mu_assert(deleted == &expect2, "Should get test2");
  77. result = Hashmap_get(map, &test2);
  78. mu_assert(result == NULL, "Should delete.");
  79. deleted = (bstring)Hashmap_delete(map, &test3);
  80. mu_assert(deleted != NULL, "Got NULL on delete.");
  81. mu_assert(deleted == &expect3, "Should get test3");
  82. result = Hashmap_get(map, &test3);
  83. mu_assert(result == NULL, "Should delete.");
  84. return NULL;
  85. }
  86. char *all_tests()
  87. {
  88. mu_suite_start();
  89. mu_run_test(test_create);
  90. mu_run_test(test_get_set);
  91. mu_run_test(test_traverse);
  92. mu_run_test(test_delete);
  93. mu_run_test(test_destroy);
  94. return NULL;
  95. }
  96. RUN_TESTS(all_tests);

需要学习的唯一一件事情就是我在单元测试的顶端使用了bstring的特性来创建静态字符串用于测试。我使用tagbstringbsStatic在7~13行创建他们。

如何改进

这是一个非常简单的Hashmap实现,就像书中的大多数其他数据结构那样。我的目标不是让你以非常快的速度来掌握数据结构。通常这些讨论起来非常复杂,并且会让你偏离真正的基础和实用的数据结构。我的目标是提供一个易于理解的起始点,然后再改进或理解它们如何实现。

对于这和练习,下面是你能够用于改进这个实现的方法:

  • 你可以对每个桶进行排序,使它们有序。这会增加你的插入时间,但是减少寻找时间,因为你可以使用二分搜索来寻找每个节点。到现在为止它遍历桶中的所有节点来寻找元素。
  • 你可以动态设定桶的数量,或者让调用者指定每个Hashmap中的该值。
  • 你可以使用更好的default_hash函数,有许多这样的函数。
  • 这个实现以及几乎所有实现都有将一些特定的键存到一个桶中的风险。这会使你的程序运行速度变慢,因为它使Hashmap的处理过程变成了处理单个的DArray。如果你对桶中的数组排序会有帮助,但是你可以仅仅使用更好的哈希函数来避免,并且对于真正的偏执狂,你可以添加一个随机的盐,让键不可预测。
  • 你可以删掉不歪有任何节点的桶来节约空间,或者将空的桶当如缓存中,便于节约创建和销毁它们的开销。
  • 现在为止它可以添加已存在的元素,编写一个替代的实现,使它只能够添加不存在的元素。

像往常一样,你需要浏览每个函数,并且使之健壮。Hashmap也可以使用一些调试设置,来执行不变量检查。

附加题

  • 研究你最喜欢的编程语言的Hashmap实现,了解它们具有什么特性。
  • 找到Hashmap的主要缺点,以及如何避免它们。例如,它们不做特定的修改就不能保存顺序,并且当你基于键的一部分来查找元素时,它们就不能生效。
  • 编写单元测试来展示将键都填充到Hashmap的一个桶中所带来的缺陷,之后测试这样如何影响性能。一个实现它的好方法,就是把桶的数量减少到一个愚蠢的数值,比如1。