C++需要种子的哈希函数
更新 - 什么库可以给我一个好的哈希函数,它需要 C++ 中的种子?
Update - What library can give me a good hash function that takes a seed in c++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
更新 - 什么库可以给我一个好的哈希函数,它需要 C++ 中的种子?
Update - What library can give me a good hash function that takes a seed in c++?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您的意思是像完美哈希生成器之类的东西,而不是像哈希函数列表之类的东西,编写共享一个公共接口,然后在运行时戏剧性地选择该接口。
编辑:现在问题已经澄清,只有您可以评估哪个是您用 C++ 编写的应用程序的“最佳”完美哈希生成器。
Do you mean something like a Perfect Hash Generator, and not something like a List of Hash Functions, written to share a common interface which is then melodramatically selected at runtime.
EDIT: now that the question is clarified, only you can evaluate which is "the best" perfect hash generator for your application written in C++.