各种hash函数
public class HashAlgorithms
{
/**
* 加法hash
* @param key 字符串
* @param prime 一个质数
* @return hash结果
*/
public static int additiveHash(String key, int prime)
{
int hash, i;
for (hash = key.length(), i = ; i < key.length(); i++)
hash += key.charAt(i);
return (hash % prime);
} /**
* 旋转hash
* @param key 输入字符串
* @param prime 质数
* @return hash值
*/
public static int rotatingHash(String key, int prime)
{
int hash, i;
for (hash=key.length(), i=; i<key.length(); ++i)
hash = (hash<<)^(hash>>)^key.charAt(i);
return (hash % prime);
// return (hash ^ (hash>>10) ^ (hash>>20));
} // 替代:
// 使用:hash = (hash ^ (hash>>10) ^ (hash>>20)) & mask;
// 替代:hash %= prime; /**
* MASK值,随便找一个值,最好是质数
*/
static int M_MASK = 0x8765fed1;
/**
* 一次一个hash
* @param key 输入字符串
* @return 输出hash值
*/
public static int oneByOneHash(String key)
{
int hash, i;
for (hash=, i=; i<key.length(); ++i)
{
hash += key.charAt(i);
hash += (hash << );
hash ^= (hash >> );
}
hash += (hash << );
hash ^= (hash >> );
hash += (hash << );
// return (hash & M_MASK);
return hash;
} /**
* Bernstein's hash
* @param key 输入字节数组
* @param level 初始hash常量
* @return 结果hash
*/
public static int bernstein(String key)
{
int hash = ;
int i;
for (i=; i<key.length(); ++i) hash = *hash + key.charAt(i);
return hash;
} //
//// Pearson's Hash
// char pearson(char[]key, ub4 len, char tab[256])
// {
// char hash;
// ub4 i;
// for (hash=len, i=0; i<len; ++i)
// hash=tab[hash^key[i]];
// return (hash);
// } //// CRC Hashing,计算crc,具体代码见其他
// ub4 crc(char *key, ub4 len, ub4 mask, ub4 tab[256])
// {
// ub4 hash, i;
// for (hash=len, i=0; i<len; ++i)
// hash = (hash >> 8) ^ tab[(hash & 0xff) ^ key[i]];
// return (hash & mask);
// } /**
* Universal Hashing
*/
public static int universal(char[]key, int mask, int[] tab)
{
int hash = key.length, i, len = key.length;
for (i=; i<(len<<); i+=)
{
char k = key[i>>];
if ((k&0x01) == ) hash ^= tab[i+];
if ((k&0x02) == ) hash ^= tab[i+];
if ((k&0x04) == ) hash ^= tab[i+];
if ((k&0x08) == ) hash ^= tab[i+];
if ((k&0x10) == ) hash ^= tab[i+];
if ((k&0x20) == ) hash ^= tab[i+];
if ((k&0x40) == ) hash ^= tab[i+];
if ((k&0x80) == ) hash ^= tab[i+];
}
return (hash & mask);
} /**
* Zobrist Hashing
*/
public static int zobrist( char[] key,int mask, int[][] tab)
{
int hash, i;
for (hash=key.length, i=; i<key.length; ++i)
hash ^= tab[i][key[i]];
return (hash & mask);
} // LOOKUP3
// 见Bob Jenkins(3).c文件 // 32位FNV算法
static int M_SHIFT = ;
/**
* 32位的FNV算法
* @param data 数组
* @return int值
*/
public static int FNVHash(byte[] data)
{
int hash = (int)2166136261L;
for(byte b : data)
hash = (hash * ) ^ b;
if (M_SHIFT == )
return hash;
return (hash ^ (hash >> M_SHIFT)) & M_MASK;
}
/**
* 改进的32位FNV算法1
* @param data 数组
* @return int值
*/
public static int FNVHash1(byte[] data)
{
final int p = ;
int hash = (int)2166136261L;
for(byte b:data)
hash = (hash ^ b) * p;
hash += hash << ;
hash ^= hash >> ;
hash += hash << ;
hash ^= hash >> ;
hash += hash << ;
return hash;
}
/**
* 改进的32位FNV算法1
* @param data 字符串
* @return int值
*/
public static int FNVHash1(String data)
{
final int p = ;
int hash = (int)2166136261L;
for(int i=;i<data.length();i++)
hash = (hash ^ data.charAt(i)) * p;
hash += hash << ;
hash ^= hash >> ;
hash += hash << ;
hash ^= hash >> ;
hash += hash << ;
return hash;
} /**
* Thomas Wang的算法,整数hash
*/
public static int intHash(int key)
{
key += ~(key << );
key ^= (key >>> );
key += (key << );
key ^= (key >>> );
key += ~(key << );
key ^= (key >>> );
return key;
}
/**
* RS算法hash
* @param str 字符串
*/
public static int RSHash(String str)
{
int b = ;
int a = ;
int hash = ; for(int i = ; i < str.length(); i++)
{
hash = hash * a + str.charAt(i);
a = a * b;
} return (hash & 0x7FFFFFFF);
}
/* End Of RS Hash Function */ /**
* JS算法
*/
public static int JSHash(String str)
{
int hash = ; for(int i = ; i < str.length(); i++)
{
hash ^= ((hash << ) + str.charAt(i) + (hash >> ));
} return (hash & 0x7FFFFFFF);
}
/* End Of JS Hash Function */ /**
* PJW算法
*/
public static int PJWHash(String str)
{
int BitsInUnsignedInt = ;
int ThreeQuarters = (BitsInUnsignedInt * ) / ;
int OneEighth = BitsInUnsignedInt / ;
int HighBits = 0xFFFFFFFF << (BitsInUnsignedInt - OneEighth);
int hash = ;
int test = ; for(int i = ; i < str.length();i++)
{
hash = (hash << OneEighth) + str.charAt(i); if((test = hash & HighBits) != )
{
hash = (( hash ^ (test >> ThreeQuarters)) & (~HighBits));
}
} return (hash & 0x7FFFFFFF);
}
/* End Of P. J. Weinberger Hash Function */ /**
* ELF算法
*/
public static int ELFHash(String str)
{
int hash = ;
int x = ; for(int i = ; i < str.length(); i++)
{
hash = (hash << ) + str.charAt(i);
if((x = (int)(hash & 0xF0000000L)) != )
{
hash ^= (x >> );
hash &= ~x;
}
} return (hash & 0x7FFFFFFF);
}
/* End Of ELF Hash Function */ /**
* BKDR算法
*/
public static int BKDRHash(String str)
{
int seed = ; // 31 131 1313 13131 131313 etc..
int hash = ; for(int i = ; i < str.length(); i++)
{
hash = (hash * seed) + str.charAt(i);
} return (hash & 0x7FFFFFFF);
}
/* End Of BKDR Hash Function */ /**
* SDBM算法
*/
public static int SDBMHash(String str)
{
int hash = ; for(int i = ; i < str.length(); i++)
{
hash = str.charAt(i) + (hash << ) + (hash << ) - hash;
} return (hash & 0x7FFFFFFF);
}
/* End Of SDBM Hash Function */ /**
* DJB算法
*/
public static int DJBHash(String str)
{
int hash = ; for(int i = ; i < str.length(); i++)
{
hash = ((hash << ) + hash) + str.charAt(i);
} return (hash & 0x7FFFFFFF);
}
/* End Of DJB Hash Function */ /**
* DEK算法
*/
public static int DEKHash(String str)
{
int hash = str.length(); for(int i = ; i < str.length(); i++)
{
hash = ((hash << ) ^ (hash >> )) ^ str.charAt(i);
} return (hash & 0x7FFFFFFF);
}
各种hash函数的实现
其中比较有名的是elfhash函数。它对字串数组的算hash方式为
将一个字符串的数组中的每个元素依次按前四位与上一个元素的低四位相与,组成一个长整形,如果长整的高四位大于零,那么就将它折回再与长整的低四位相异或,这样最后得到的长整对HASH表长取余,得到在HASH中的位置。
/**
* ELF算法
*/
public static int ELFHash(String str)
{
int hash = ;
int x = ; for(int i = ; i < str.length(); i++)
{
hash = (hash << ) + str.charAt(i);
if((x = (int)(hash & 0xF0000000L)) != )
{
hash ^= (x >> );
hash &= ~x;
}
}
}
下面这个是所有最靠近2的幂次方的质数表,这些质数可以用来做hash表的扩增
glib质数表 static const gint prime_mod [] =
{
, /* For 1 << 0 */
,
,
,
,
,
,
,
,
,
,
,
,
,
,
,
, /* For 1 << 16 */
,
,
,
,
,
,
,
,
,
,
,
,
,
,
/* For 1 << 31 */
};
各种hash函数的更多相关文章
- Hash 函数及其重要性
不时会爆出网站的服务器和数据库被盗取,考虑到这点,就要确保用户一些敏感数据(例如密码)的安全性.今天,我们要学的是 hash 背后的基础知识,以及如何用它来保护你的 web 应用的密码. 申明 密码学 ...
- Bitset<>用于unordered container时的默认hash函数
自从c++11起,bitset用于unordered container,将会提供默认的hash函数. 在gcc中,相关代码如下: // DR 1182. /// std::hash speciali ...
- Hash函数及其应用
本文部分内容摘自网络,参考资料链接会在文后给出,在此感谢原作者的分享. 计算理论中,没有Hash函数的说法,只有单向函数的说法.所谓的单向函数,是一个复杂的定义,大家可以去看计算理论或者密码学方面的数 ...
- 各种字符串Hash函数比较(转)
常用的字符串Hash函数还有ELFHash,APHash等等,都是十分简单有效的方法.这些函数使用位运算使得每一个字符都对最后的函数值产生影响.另外还有以MD5和SHA1为代表的杂凑函数,这些函数几乎 ...
- hash函数为什么要选择对素数求余?
常用的hash函数是选一个数m取模(余数),这个数在课本中推荐m是素数,但是经常见到选择m=2^n,因为对2^n求余数更快,并认为在key分布均匀的情况下,key%m也是在[0,m-1]区间均匀分布的 ...
- 理解php Hash函数,增强密码安全
1.声明 密码学是一个复杂的话题,我也不是这方面的专家.许多高校和研究机构在这方面都有长期的研究.在这篇文章里,我希望尽量使用简单易懂的方式向你展示一种安全存储Web程序密码的方法. 2.“Hash” ...
- 长度有限制的字符串hash函数
长度有限制的字符串hash函数 DJBHash是一种非常流行的算法,俗称"Times33"算法.Times33的算法很简单,就是不断的乘33,原型如下 hash(i) = hash ...
- [转]各种字符串Hash函数比较
转自:https://www.byvoid.com/zht/blog/string-hash-compare 常用的字符串Hash函数还有ELFHash,APHash等等,都是十分简单有效的方法.这些 ...
- 学习hash_map从而了解如何写stl里面的hash函数和equal或者compare函数
---恢复内容开始--- 看到同事用unordered_map了所以找个帖子学习学习 http://blog.sina.com.cn/s/blog_4c98b9600100audq.html (一)为 ...
- Hash函数的安全性
我们为了保证消息的完整性,引进了散列函数,那么散列函数会对安全正造成什么影响呢?这是需要好好研究一番的问题. 三个概念: 1.如果y<>x,且h(x)=h(y),则称为碰撞. 2.对于给定 ...
随机推荐
- CentOS安装配置Samba
介绍 Samba可以让我们在windows中访问linux系统中的文件,如果用来调试linux虚拟机中的代码会非常的方便 1.安装 yum -y update yum install samba sa ...
- MySQL-关于并发下的mysql_insert_id()
我们在写数据库程序的时候, 经常会需要获取某个表中的最大序号数, 或者刚插入的数据的ID值, 一般情况下获取刚插入的数据的id, 使用select max(id) from table 是可以的, 但 ...
- 使用增强for循环遍历集合的时候操作集合的问题?
// 遍历一个list public static void printList(List<String> list){ for (String string : list) { list ...
- 获取JSON格式的字符串各个属性对应的值
{"lastrdtime":1515998187379,"creditbalance":"$5.00","contactmode& ...
- INFO ipc.Client:Retrying connect to server 9000
hadoop使用bin/start_all.sh命令之后,使用jps发现datanode无法启动 This problem comes when Datanode daemon on the syst ...
- Setting up a static IP address in Ubuntu
sudo gedit /etc/network/interfaces Change the line iface eth0 inet dhcp to iface eth0 inet static an ...
- Chrome浏览器桌面通知提示功能使用
http://www.cnblogs.com/meteoric_cry/archive/2012/03/31/2426256.html
- Linux 通过cron定期执行 php文件(转)
Linux 通过cron定期执行 php文件 补充几点: 1. 要在php文件头加上解释器的路径,通常是 #!/usr/bin/php 2. 授予要执行的php文件执行权限 chmod a+x x ...
- Tree通用的系列方法列表-treepanel
在项目中经常会用到Tree来显示数据进行操作.今天整理出来一系列操作Tree的方法.可供项目中方便调用.不用重复写代码,快速应用,通用性很强. Tree系列方法列表如下:主要针对的是ext.net中的 ...
- jmeter 非GUI执行测试,导入jtl文件没有响应数据出来办法
jemter 官方也一直强调要在非GUI下执行 Run your JMeter test in command-line non-GUI mode as 在linux下执行jmeter压力测试,生成j ...