欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

hash 算法

程序员文章站 2022-07-15 15:39:19
...
[url]http://blog.csdn.net/eaglex/article/details/6310727[/url]


public long DJBHash(String str)
{
long hash = 5381;
for(int i = 0; i < str.length(); i++)
{
hash = ((hash << 5) + hash) + str.charAt(i);
}
return hash;
}


这个算法是Daniel J.Bernstein 教授发明的,是目前公布的最有效的哈希函数。
相关标签: DJBHash