寻找散列算法的伪代码(开放式、链式和多重)
您好,我正在寻找“开放”、“链接”和“多重哈希”算法的伪代码。 是的,我在谷歌上搜索了很长时间,但没能找到好的东西。
如果您有要分享的链接,我将不胜
感激
Greetings, I am looking for the pseudo code for "open", "chaining" abd "multiple hashing" algorithms. Yes I have been searching for a good amount of time at google but I wasn't able to get something good.
If you have a link to share, I will be greatful
regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此哈希表教程提供了开放和链接冲突解决方案的示例。
Bob Jenkins 的网站提供了哈希表、完美哈希和高效哈希函数的更多示例。
我还没有找到对多重哈希的令人满意的解释(特别是为什么组合两个不同的 32 位哈希被认为比平滑的 64 位哈希更好)
This hash table tutorial has examples of open and chaining collision resolution.
Bob Jenkins' Web Site has further examples of hash tables, perfect hashes and efficient hash functions.
I haven't found a satisfying explanation of multiple hashing (specifically why combining two different 32 bit hashes is considered better than a smooth 64 bit hash)
从那里开始:
等。
http://en.wikipedia.org/wiki/Cryptographic_hash_function
And from there:
etc.