当前位置:   article > 正文

哈希表 -- C语言实现_c语言哈希表实现

c语言哈希表实现

1 哈希表原理

这里不讲高深理论,只说直观感受。哈希表的目的就是为了根据数据的部分内容(关键字),直接计算出存放完整数据的内存地址。

试想一下,如果从链表中根据关键字查找一个元素,那么就需要遍历才能得到这个元素的内存地址,如果链表长度很大,查找就需要更多的时间.

  1. void* list_find_by_key(list,key)
  2. {
  3. for(p=list;p!=NULL; p=p->next){
  4. if(p->key == key){
  5. return p;
  6. }
  7. return p;
  8. }
  9. }

为了解决根据关键字快速找到元素的存放地址,哈希表应运而生。它通过某种算法(哈希函数)直接根据关键字计算出元素的存放地址,由于无需遍历,所以效率很高。

  1. void* hash_table_find_by_key(table, key)
  2. {
  3. void* p = hash(key);
  4. return p;
  5. }

当然,上面的伪代码忽略了一个重要的事实:那就是不同的关键字可能产生出同样的hash值。

  1. hash("张三") = 23;
  2. hash("李四") = 30;
  3. hash("王五") = 23;

这种情况称为“冲突”,为了解决这个问题,有两种方法:一是链式扩展;二是开放寻址。这里只讲第一种:链式扩展。

也就是把具有相同hash值的元素放到一起,形成一个链表。这样在插入和寻找数据的时候就需要进一步判断。

  1. void* hash_table_find_by_key(table, key)
  2. {
  3. void* list = hash(key);
  4. return list_find_by_key(list, key);
  5. }

需要注意的是,只要hash函数合适,这里的链表通常都长度不大,所以查找效率依然很高。

下图是一个哈希表运行时内存布局:

这里写图片描述

2 纯C实现源码

实际工作中,大多数情况下,关键字都是字符串的形式,而大多数教科书上却使用整数关键字来举例,这非常脱离实际。为此,本人决定使用纯C语言开发一个哈希表结构,供大家参考。主要特点:

  • 基于接口开发,对外彻底隐藏实现细节
  • 具有自动释放客户结构内存的回调功能
  • 采用经典的Times33哈希算法
  • 采用纯C开发,可供C和C++客户使用

HashTable.h 头文件

  1. #pragma once
  2. typedef struct HashTable HashTable;
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /* new an instance of HashTable */
  7. HashTable* hash_table_new();
  8. /*
  9. delete an instance of HashTable,
  10. all values are removed auotmatically.
  11. */
  12. void hash_table_delete(HashTable* ht);
  13. /*
  14. add or update a value to ht,
  15. free_value(if not NULL) is called automatically when the value is removed.
  16. return 0 if success, -1 if error occurred.
  17. */
  18. #define hash_table_put(ht,key,value) hash_table_put2(ht,key,value,NULL);
  19. int hash_table_put2(HashTable* ht, char* key, void* value, void(*free_value)(void*));
  20. /* get a value indexed by key, return NULL if not found. */
  21. void* hash_table_get(HashTable* ht, char* key);
  22. /* remove a value indexed by key */
  23. void hash_table_rm(HashTable* ht, char* key);
  24. #ifdef __cplusplus
  25. }
  26. #endif
  •  

HashTable.c 实现文件

  1. #include "HashTable.h"
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <stdio.h>
  5. #define TABLE_SIZE (1024*1024)
  6. /* element of the hash table's chain list */
  7. struct kv
  8. {
  9. struct kv* next;
  10. char* key;
  11. void* value;
  12. void(*free_value)(void*);
  13. };
  14. /* HashTable */
  15. struct HashTable
  16. {
  17. struct kv ** table;
  18. };
  19. /* constructor of struct kv */
  20. static void init_kv(struct kv* kv)
  21. {
  22. kv->next = NULL;
  23. kv->key = NULL;
  24. kv->value = NULL;
  25. kv->free_value = NULL;
  26. }
  27. /* destructor of struct kv */
  28. static void free_kv(struct kv* kv)
  29. {
  30. if (kv) {
  31. if (kv->free_value) {
  32. kv->free_value(kv->value);
  33. }
  34. free(kv->key);
  35. kv->key = NULL;
  36. free(kv);
  37. }
  38. }
  39. /* the classic Times33 hash function */
  40. static unsigned int hash_33(char* key)
  41. {
  42. unsigned int hash = 0;
  43. while (*key) {
  44. hash = (hash << 5) + hash + *key++;
  45. }
  46. return hash;
  47. }
  48. /* new a HashTable instance */
  49. HashTable* hash_table_new()
  50. {
  51. HashTable* ht = malloc(sizeof(HashTable));
  52. if (NULL == ht) {
  53. hash_table_delete(ht);
  54. return NULL;
  55. }
  56. ht->table = malloc(sizeof(struct kv*) * TABLE_SIZE);
  57. if (NULL == ht->table) {
  58. hash_table_delete(ht);
  59. return NULL;
  60. }
  61. memset(ht->table, 0, sizeof(struct kv*) * TABLE_SIZE);
  62. return ht;
  63. }
  64. /* delete a HashTable instance */
  65. void hash_table_delete(HashTable* ht)
  66. {
  67. if (ht) {
  68. if (ht->table) {
  69. int i = 0;
  70. for (i = 0; i<TABLE_SIZE; i++) {
  71. struct kv* p = ht->table[i];
  72. struct kv* q = NULL;
  73. while (p) {
  74. q = p->next;
  75. free_kv(p);
  76. p = q;
  77. }
  78. }
  79. free(ht->table);
  80. ht->table = NULL;
  81. }
  82. free(ht);
  83. }
  84. }
  85. /* insert or update a value indexed by key */
  86. int hash_table_put2(HashTable* ht, char* key, void* value, void(*free_value)(void*))
  87. {
  88. int i = hash_33(key) % TABLE_SIZE;
  89. struct kv* p = ht->table[i];
  90. struct kv* prep = p;
  91. while (p) { /* if key is already stroed, update its value */
  92. if (strcmp(p->key, key) == 0) {
  93. if (p->free_value) {
  94. p->free_value(p->value);
  95. }
  96. p->value = value;
  97. p->free_value = free_value;
  98. break;
  99. }
  100. prep = p;
  101. p = p->next;
  102. }
  103. if (p == NULL) {/* if key has not been stored, then add it */
  104. char* kstr = malloc(strlen(key) + 1);
  105. if (kstr == NULL) {
  106. return -1;
  107. }
  108. struct kv * kv = malloc(sizeof(struct kv));
  109. if (NULL == kv) {
  110. free(kstr);
  111. kstr = NULL;
  112. return -1;
  113. }
  114. init_kv(kv);
  115. kv->next = NULL;
  116. strcpy(kstr, key);
  117. kv->key = kstr;
  118. kv->value = value;
  119. kv->free_value = free_value;
  120. if (prep == NULL) {
  121. ht->table[i] = kv;
  122. }
  123. else {
  124. prep->next = kv;
  125. }
  126. }
  127. return 0;
  128. }
  129. /* get a value indexed by key */
  130. void* hash_table_get(HashTable* ht, char* key)
  131. {
  132. int i = hash_33(key) % TABLE_SIZE;
  133. struct kv* p = ht->table[i];
  134. while (p) {
  135. if (strcmp(key, p->key) == 0) {
  136. return p->value;
  137. }
  138. p = p->next;
  139. }
  140. return NULL;
  141. }
  142. /* remove a value indexed by key */
  143. void hash_table_rm(HashTable* ht, char* key)
  144. {
  145. int i = hash_33(key) % TABLE_SIZE;
  146. struct kv* p = ht->table[i];
  147. struct kv* prep = p;
  148. while (p) {
  149. if (strcmp(key, p->key) == 0) {
  150. free_kv(p);
  151. if (p == prep) {
  152. ht->table[i] = NULL;
  153. }
  154. else {
  155. prep->next = p->next;
  156. }
  157. }
  158. prep = p;
  159. p = p->next;
  160. }
  161. }
  •  

3 测试程序

下面是测试程序源码,基于C++。

测试程序test.cpp

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include "HashTable.h"
  4. // 要放入哈希表中的结构体
  5. struct Student
  6. {
  7. int age;
  8. float score;
  9. char name[32];
  10. char data[1024 * 1024* 10];
  11. };
  12. // 结构体内存释放函数
  13. static void free_student(void* stu)
  14. {
  15. free(stu);
  16. }
  17. // 显示学生信息的函数
  18. static void show_student(struct Student* p)
  19. {
  20. printf("姓名:%s, 年龄:%d, 学分:%.2f\n", p->name, p->age, p->score);
  21. }
  22. int main()
  23. {
  24. // 新建一个HashTable实例
  25. HashTable* ht = hash_table_new();
  26. if (NULL == ht) {
  27. return -1;
  28. }
  29. // 向哈希表中加入多个学生结构体
  30. for (int i = 0; i < 100; i++) {
  31. struct Student * stu = (struct Student*)malloc(sizeof(struct Student));
  32. stu->age = 18 + rand()%5;
  33. stu->score = 50.0f + rand() % 100;
  34. sprintf(stu->name, "同学%d", i);
  35. hash_table_put2(ht, stu->name, stu, free_student);
  36. }
  37. // 根据学生姓名查找学生结构
  38. for (int i = 0; i < 100; i++) {
  39. char name[32];
  40. sprintf(name, "同学%d", i);
  41. struct Student * stu = (struct Student*)hash_table_get(ht, name);
  42. show_student(stu);
  43. }
  44. // 销毁哈希表实例
  45. hash_table_delete(ht);
  46. return 0;
  47. }

--------------------- 本文来自 smstong 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/smstong/article/details/51145786?utm_source=copy

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/486500
推荐阅读
相关标签
  

闽ICP备14008679号