gpt4 book ai didi

c - 字符串的哈希函数

转载 作者:行者123 更新时间:2023-11-30 17:00:31 25 4
gpt4 key购买 nike

我正在用 C 语言研究哈希表,并且正在测试字符串的哈希函数。

我尝试的第一个功能是添加 ascii 代码并使用模 (% 100),但第一次数据测试结果很差:130 个单词有 40 次冲突。

最终输入数据将包含 8000 个单词(它是存储在文件中的字典)。哈希表声明为 int table[10000],并包含单词在 .txt 文件中的位置。

  • 哪种哈希字符串算法最好?
  • 如何确定哈希表的大小?

最佳答案

我使用 djb2 取得了不错的结果作者:丹·伯恩斯坦。

unsigned long
hash(unsigned char *str)
{
unsigned long hash = 5381;
int c;

while (c = *str++)
hash = ((hash << 5) + hash) + c; /* hash * 33 + c */

return hash;
}

关于c - 字符串的哈希函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37566799/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com