博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
大量Hash算法的实现
阅读量:5931 次
发布时间:2019-06-19

本文共 6693 字,大约阅读时间需要 22 分钟。

Hash算法有很多很多种类。具体的可以参考之前我写的Hash算法的一些分析。本处给大家提供一个集合了很多使用的Hash算法的类,应该可以满足不少人的需要的:

ExpandedBlockStart.gif
/*
*
InBlock.gif* Hash算法大全<br>
InBlock.gif* 推荐使用FNV1算法
InBlock.gif* @algorithm None
InBlock.gif* @author Goodzzp 2006-11-20
InBlock.gif* @lastEdit Goodzzp 2006-11-20 
InBlock.gif* @editDetail Create
ExpandedBlockEnd.gif
*/
None.gif
public 
class HashAlgorithms
ExpandedBlockStart.gif {
ExpandedSubBlockStart.gif
/*
*
InBlock.gif* 加法hash
InBlock.gif* @param key 字符串
InBlock.gif* @param prime 一个质数
InBlock.gif* @return hash结果
ExpandedSubBlockEnd.gif
*/
InBlock.gif
public 
static 
int additiveHash(String key, 
int prime)
ExpandedSubBlockStart.gif{
InBlock.gif   
int hash, i;
InBlock.gif   
for (hash = key.length(), i = 0; i < key.length(); i++)
InBlock.gif    hash += key.charAt(i);
InBlock.gif   
return (hash % prime);
ExpandedSubBlockEnd.gif}
InBlock.gif
ExpandedSubBlockStart.gif
/*
*
InBlock.gif* 旋转hash
InBlock.gif* @param key 输入字符串
InBlock.gif* @param prime 质数
InBlock.gif* @return hash值
ExpandedSubBlockEnd.gif
*/
InBlock.gif
public 
static 
int rotatingHash(String key, 
int prime)
ExpandedSubBlockStart.gif{
InBlock.gif   
int hash, i;
InBlock.gif   
for (hash=key.length(), i=0; i<key.length(); ++i)
InBlock.gif     hash = (hash<<4)^(hash>>28)^key.charAt(i);
InBlock.gif   
return (hash % prime);
InBlock.gif
//
   return (hash ^ (hash>>10) ^ (hash>>20));
ExpandedSubBlockEnd.gif
}
InBlock.gif
InBlock.gif
//
 替代:
InBlock.gif
//
 使用:hash = (hash ^ (hash>>10) ^ (hash>>20)) & mask;
InBlock.gif
//
 替代:hash %= prime;
InBlock.gif
InBlock.gif
ExpandedSubBlockStart.gif
/*
*
InBlock.gif* MASK值,随便找一个值,最好是质数
ExpandedSubBlockEnd.gif
*/
InBlock.gif
static 
int M_MASK = 0x8765fed1;
ExpandedSubBlockStart.gif
/*
*
InBlock.gif* 一次一个hash
InBlock.gif* @param key 输入字符串
InBlock.gif* @return 输出hash值
ExpandedSubBlockEnd.gif
*/
InBlock.gif
public 
static 
int oneByOneHash(String key)
ExpandedSubBlockStart.gif{
InBlock.gif   
int   hash, i;
InBlock.gif   
for (hash=0, i=0; i<key.length(); ++i)
ExpandedSubBlockStart.gif   {
InBlock.gif     hash += key.charAt(i);
InBlock.gif     hash += (hash << 10);
InBlock.gif     hash ^= (hash >> 6);
ExpandedSubBlockEnd.gif   }
InBlock.gif   hash += (hash << 3);
InBlock.gif   hash ^= (hash >> 11);
InBlock.gif   hash += (hash << 15);
InBlock.gif
//
   return (hash & M_MASK);
InBlock.gif
   
return hash;
ExpandedSubBlockEnd.gif}
InBlock.gif
ExpandedSubBlockStart.gif
/*
*
InBlock.gif* Bernstein's hash
InBlock.gif* @param key 输入字节数组
InBlock.gif* @param level 初始hash常量
InBlock.gif* @return 结果hash
ExpandedSubBlockEnd.gif
*/
InBlock.gif
public 
static 
int bernstein(String key)
ExpandedSubBlockStart.gif{
InBlock.gif   
int hash = 0;
InBlock.gif   
int i;
InBlock.gif   
for (i=0; i<key.length(); ++i) hash = 33*hash + key.charAt(i);
InBlock.gif   
return hash;
ExpandedSubBlockEnd.gif}
InBlock.gif
InBlock.gif
//
ExpandedSubBlockStart.gif
///
/ Pearson's Hash
InBlock.gif
//
 char pearson(char[]key, ub4 len, char tab[256])
InBlock.gif
//
 {
InBlock.gif
//
   char hash;
InBlock.gif
//
   ub4 i;
InBlock.gif
//
   for (hash=len, i=0; i<len; ++i) 
InBlock.gif
//
     hash=tab[hash^key[i]];
InBlock.gif
//
   return (hash);
InBlock.gif
//
 }
InBlock.gif
ExpandedSubBlockStart.gif
///
/ CRC Hashing,计算crc,具体代码见其他
InBlock.gif
//
 ub4 crc(char *key, ub4 len, ub4 mask, ub4 tab[256])
InBlock.gif
//
 {
InBlock.gif
//
   ub4 hash, i;
InBlock.gif
//
   for (hash=len, i=0; i<len; ++i)
InBlock.gif
//
     hash = (hash >> 8) ^ tab[(hash & 0xff) ^ key[i]];
InBlock.gif
//
   return (hash & mask);
InBlock.gif
//
 }
InBlock.gif
ExpandedSubBlockStart.gif
/*
*
InBlock.gif* Universal Hashing
ExpandedSubBlockEnd.gif
*/
InBlock.gif
public 
static 
int universal(
char[]key, 
int mask, 
int[] tab)
ExpandedSubBlockStart.gif{
InBlock.gif   
int hash = key.length, i, len = key.length;
InBlock.gif   
for (i=0; i<(len<<3); i+=8)
ExpandedSubBlockStart.gif   {
InBlock.gif     
char k = key[i>>3];
InBlock.gif     
if ((k&0x01) == 0) hash ^= tab[i+0];
InBlock.gif     
if ((k&0x02) == 0) hash ^= tab[i+1];
InBlock.gif     
if ((k&0x04) == 0) hash ^= tab[i+2];
InBlock.gif     
if ((k&0x08) == 0) hash ^= tab[i+3];
InBlock.gif     
if ((k&0x10) == 0) hash ^= tab[i+4];
InBlock.gif     
if ((k&0x20) == 0) hash ^= tab[i+5];
InBlock.gif     
if ((k&0x40) == 0) hash ^= tab[i+6];
InBlock.gif     
if ((k&0x80) == 0) hash ^= tab[i+7];
ExpandedSubBlockEnd.gif   }
InBlock.gif   
return (hash & mask);
ExpandedSubBlockEnd.gif}
InBlock.gif
ExpandedSubBlockStart.gif
/*
*
InBlock.gif* Zobrist Hashing
ExpandedSubBlockEnd.gif
*/ 
InBlock.gif
public 
static 
int zobrist( 
char[] key,
int mask, 
int[][] tab)
ExpandedSubBlockStart.gif{
InBlock.gif   
int hash, i;
InBlock.gif   
for (hash=key.length, i=0; i<key.length; ++i)
InBlock.gif     hash ^= tab[i][key[i]];
InBlock.gif   
return (hash & mask);
ExpandedSubBlockEnd.gif}
InBlock.gif
InBlock.gif
//
 LOOKUP3 
InBlock.gif
//
 见Bob Jenkins(3).c文件
InBlock.gif
InBlock.gif
//
 32位FNV算法
InBlock.gif
static 
int M_SHIFT = 0;
ExpandedSubBlockStart.gif
/*
*
InBlock.gif* 32位的FNV算法
InBlock.gif* @param data 数组
InBlock.gif* @return int值
ExpandedSubBlockEnd.gif
*/
InBlock.gif    
public 
static 
int FNVHash(
byte[] data)
ExpandedSubBlockStart.gif    {
InBlock.gif        
int hash = (
int)2166136261L;
InBlock.gif        
for(
byte b : data)
InBlock.gif            hash = (hash * 16777619) ^ b;
InBlock.gif        
if (M_SHIFT == 0)
InBlock.gif            
return hash;
InBlock.gif        
return (hash ^ (hash >> M_SHIFT)) & M_MASK;
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * 改进的32位FNV算法1
InBlock.gif     * @param data 数组
InBlock.gif     * @return int值
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int FNVHash1(
byte[] data)
ExpandedSubBlockStart.gif    {
InBlock.gif        final 
int p = 16777619;
InBlock.gif        
int hash = (
int)2166136261L;
InBlock.gif        
for(
byte b:data)
InBlock.gif            hash = (hash ^ b) * p;
InBlock.gif        hash += hash << 13;
InBlock.gif        hash ^= hash >> 7;
InBlock.gif        hash += hash << 3;
InBlock.gif        hash ^= hash >> 17;
InBlock.gif        hash += hash << 5;
InBlock.gif        
return hash;
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * 改进的32位FNV算法1
InBlock.gif     * @param data 字符串
InBlock.gif     * @return int值
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int FNVHash1(String data)
ExpandedSubBlockStart.gif    {
InBlock.gif        final 
int p = 16777619;
InBlock.gif        
int hash = (
int)2166136261L;
InBlock.gif        
for(
int i=0;i<data.length();i++)
InBlock.gif            hash = (hash ^ data.charAt(i)) * p;
InBlock.gif        hash += hash << 13;
InBlock.gif        hash ^= hash >> 7;
InBlock.gif        hash += hash << 3;
InBlock.gif        hash ^= hash >> 17;
InBlock.gif        hash += hash << 5;
InBlock.gif        
return hash;
ExpandedSubBlockEnd.gif    }
InBlock.gif
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * Thomas Wang的算法,整数hash
ExpandedSubBlockEnd.gif     
*/ 
InBlock.gif    
public 
static 
int intHash(
int key)
ExpandedSubBlockStart.gif    {
InBlock.gif      key += ~(key << 15);
InBlock.gif      key ^= (key >>> 10);
InBlock.gif      key += (key << 3);
InBlock.gif      key ^= (key >>> 6);
InBlock.gif      key += ~(key << 11);
InBlock.gif      key ^= (key >>> 16);
InBlock.gif      
return key;
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * RS算法hash
InBlock.gif     * @param str 字符串
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int RSHash(String str)
ExpandedSubBlockStart.gif    {
InBlock.gif        
int b    = 378551;
InBlock.gif        
int a    = 63689;
InBlock.gif        
int hash = 0;
InBlock.gif
InBlock.gif       
for(
int i = 0; i < str.length(); i++)
ExpandedSubBlockStart.gif       {
InBlock.gif          hash = hash * a + str.charAt(i);
InBlock.gif          a    = a * b;
ExpandedSubBlockEnd.gif       }
InBlock.gif
InBlock.gif       
return (hash & 0x7FFFFFFF);
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
 End Of RS Hash Function 
*/
InBlock.gif
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * JS算法
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int JSHash(String str)
ExpandedSubBlockStart.gif    {
InBlock.gif       
int hash = 1315423911;
InBlock.gif
InBlock.gif       
for(
int i = 0; i < str.length(); i++)
ExpandedSubBlockStart.gif       {
InBlock.gif          hash ^= ((hash << 5) + str.charAt(i) + (hash >> 2));
ExpandedSubBlockEnd.gif       }
InBlock.gif
InBlock.gif       
return (hash & 0x7FFFFFFF);
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
 End Of JS Hash Function 
*/
InBlock.gif
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * PJW算法
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int PJWHash(String str)
ExpandedSubBlockStart.gif    {
InBlock.gif        
int BitsInUnsignedInt = 32;
InBlock.gif        
int ThreeQuarters     = (BitsInUnsignedInt * 3) / 4;
InBlock.gif        
int OneEighth         = BitsInUnsignedInt / 8;
InBlock.gif        
int HighBits          = 0xFFFFFFFF << (BitsInUnsignedInt - OneEighth);
InBlock.gif        
int hash              = 0;
InBlock.gif        
int test              = 0;
InBlock.gif
InBlock.gif       
for(
int i = 0; i < str.length();i++)
ExpandedSubBlockStart.gif       {
InBlock.gif          hash = (hash << OneEighth) + str.charAt(i);
InBlock.gif
InBlock.gif          
if((test = hash & HighBits) != 0)
ExpandedSubBlockStart.gif          {
InBlock.gif             hash = (( hash ^ (test >> ThreeQuarters)) & (~HighBits));
ExpandedSubBlockEnd.gif          }
ExpandedSubBlockEnd.gif       }
InBlock.gif
InBlock.gif       
return (hash & 0x7FFFFFFF);
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
 End Of P. J. Weinberger Hash Function 
*/
InBlock.gif
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * ELF算法
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int ELFHash(String str)
ExpandedSubBlockStart.gif    {
InBlock.gif        
int hash = 0;
InBlock.gif        
int x    = 0;
InBlock.gif
InBlock.gif       
for(
int i = 0; i < str.length(); i++)
ExpandedSubBlockStart.gif       {
InBlock.gif          hash = (hash << 4) + str.charAt(i);
InBlock.gif          
if((x = (
int)(hash & 0xF0000000L)) != 0)
ExpandedSubBlockStart.gif          {
InBlock.gif             hash ^= (x >> 24);
InBlock.gif             hash &= ~x;
ExpandedSubBlockEnd.gif          }
ExpandedSubBlockEnd.gif       }
InBlock.gif
InBlock.gif       
return (hash & 0x7FFFFFFF);
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
 End Of ELF Hash Function 
*/
InBlock.gif
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * BKDR算法
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int BKDRHash(String str)
ExpandedSubBlockStart.gif    {
InBlock.gif        
int seed = 131; 
//
 31 131 1313 13131 131313 etc..
InBlock.gif
        
int hash = 0;
InBlock.gif
InBlock.gif       
for(
int i = 0; i < str.length(); i++)
ExpandedSubBlockStart.gif       {
InBlock.gif          hash = (hash * seed) + str.charAt(i);
ExpandedSubBlockEnd.gif       }
InBlock.gif
InBlock.gif       
return (hash & 0x7FFFFFFF);
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
 End Of BKDR Hash Function 
*/
InBlock.gif
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * SDBM算法
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int SDBMHash(String str)
ExpandedSubBlockStart.gif    {
InBlock.gif        
int hash = 0;
InBlock.gif
InBlock.gif       
for(
int i = 0; i < str.length(); i++)
ExpandedSubBlockStart.gif       {
InBlock.gif          hash = str.charAt(i) + (hash << 6) + (hash << 16) - hash;
ExpandedSubBlockEnd.gif       }
InBlock.gif
InBlock.gif       
return (hash & 0x7FFFFFFF);
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
 End Of SDBM Hash Function 
*/
InBlock.gif
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * DJB算法
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int DJBHash(String str)
ExpandedSubBlockStart.gif    {
InBlock.gif       
int hash = 5381;
InBlock.gif
InBlock.gif       
for(
int i = 0; i < str.length(); i++)
ExpandedSubBlockStart.gif       {
InBlock.gif          hash = ((hash << 5) + hash) + str.charAt(i);
ExpandedSubBlockEnd.gif       }
InBlock.gif
InBlock.gif       
return (hash & 0x7FFFFFFF);
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
 End Of DJB Hash Function 
*/
InBlock.gif
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * DEK算法
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int DEKHash(String str)
ExpandedSubBlockStart.gif    {
InBlock.gif        
int hash = str.length();
InBlock.gif
InBlock.gif       
for(
int i = 0; i < str.length(); i++)
ExpandedSubBlockStart.gif       {
InBlock.gif          hash = ((hash << 5) ^ (hash >> 27)) ^ str.charAt(i);
ExpandedSubBlockEnd.gif       }
InBlock.gif
InBlock.gif       
return (hash & 0x7FFFFFFF);
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
 End Of DEK Hash Function 
*/
InBlock.gif
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * AP算法
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int APHash(String str)
ExpandedSubBlockStart.gif    {
InBlock.gif        
int hash = 0;
InBlock.gif
InBlock.gif       
for(
int i = 0; i < str.length(); i++)
ExpandedSubBlockStart.gif       {
InBlock.gif          hash ^= ((i & 1) == 0) ? ( (hash << 7) ^ str.charAt(i) ^ (hash >> 3)) :
InBlock.gif                                   (~((hash << 11) ^ str.charAt(i) ^ (hash >> 5)));
ExpandedSubBlockEnd.gif       }
InBlock.gif
InBlock.gif
//
       return (hash & 0x7FFFFFFF);
InBlock.gif
       
return hash;
ExpandedSubBlockEnd.gif    }
ExpandedSubBlockStart.gif    
/*
 End Of AP Hash Function 
*/
InBlock.gif    
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * JAVA自己带的算法
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
int java(String str)
ExpandedSubBlockStart.gif{
InBlock.gif   
int h = 0;
InBlock.gif   
int off = 0;
InBlock.gif   
int len = str.length();
InBlock.gif   
for (
int i = 0; i < len; i++)
ExpandedSubBlockStart.gif   {
InBlock.gif    h = 31 * h + str.charAt(off++);
ExpandedSubBlockEnd.gif   }
InBlock.gif   
return h;
ExpandedSubBlockEnd.gif}
InBlock.gif    
ExpandedSubBlockStart.gif    
/*
*
InBlock.gif     * 混合hash算法,输出64位的值
ExpandedSubBlockEnd.gif     
*/
InBlock.gif    
public 
static 
long mixHash(String str)
ExpandedSubBlockStart.gif    {
InBlock.gif    
long hash = str.hashCode();
InBlock.gif    hash <<= 32;
InBlock.gif    hash |= FNVHash1(str);
InBlock.gif    
return hash;
ExpandedSubBlockEnd.gif    }
ExpandedBlockEnd.gif}
None.gif

转载地址:http://luytx.baihongyu.com/

你可能感兴趣的文章
Confluence 6 使用 Fail2Ban 来限制登录尝试
查看>>
微软宣布 ASP.NET Core 2.0 正式支持 OData 标准
查看>>
[剑指offer] 数组中出现次数超过一半的数字
查看>>
FIR.im Weekly - 劳动节我们也没有停下来
查看>>
不写代码不用 Excel, 如何轻松搞定各种图形化展现
查看>>
【图文】实操重置密码
查看>>
iOS app上架过程中可能遇到的问题
查看>>
基于深度学习的自然场景文字检测及端到端的OCR中文文字识别
查看>>
如何控制皕杰报表web端工具条的显示 2018-10-10
查看>>
非常酷的一门小众语言 - Scala(原创)
查看>>
201所大学申请VR First,Crytek会迎来VR游戏的春天吗?
查看>>
Python 3 入门,看这篇就够了
查看>>
什么是NoSQL ------不仅仅是SQL
查看>>
Java反转一个List或ArrayList
查看>>
Asp.Net Web API(二)
查看>>
ECMAScript Decorators---装饰器
查看>>
Ebistrategy亦策软件助力菱商电子的数据可视化之路
查看>>
JVM笔记9-Class类文件结构
查看>>
ECSHOP农行支付接口开发(含手机端)
查看>>
虚拟DOM Diff算法解析
查看>>