当前位置:编程学习 > JAVA >>

java Hash算法大全

Java代码 
/**
* Hash算法大全<br>
* 推荐使用FNV1算法
* @algorithm None
* @author Goodzzp 2006-11-20
* @lastEdit Goodzzp 2006-11-20
* @editDetail Create
*/ 
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 = 0; 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=0; i<key.length(); ++i) 
            hash = (hash<<4)^(hash>>28)^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=0, i=0; i<key.length(); ++i) 
        { 
            hash += key.charAt(i); 
            hash += (hash << 10); 
            hash ^= (hash >> 6); 
        } 
        hash += (hash << 3); 
        hash ^= (hash >> 11); 
        hash += (hash << 15); 
        //   return (hash & M_MASK); 
        return hash; 
    } 
     
    /**//**
    * Bernstein's hash
    * @param key 输入字节数组
    * @param level 初始hash常量
    * @return 结果hash
    */ 
    public static int bernstein(String key) 
    { 
        int hash = 0; 
        int i; 
        for (i=0; i<key.length(); ++i) hash = 33*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=0; i<(len<<3); i+=8) 
        { 
            char k = key[i>>3]; 
            if ((k&0x01) == 0) hash ^= tab[i+0]; 
            if ((k&0x02) == 0) hash ^= tab[i+1]; 
            if ((k&0x04) == 0) hash ^= tab[i+2]; 
            if ((k&0x08) == 0) hash ^= tab[i+3]; 
            if ((k&0x10) == 0) hash ^= tab[i+4]; 
            if ((k&0x20) == 0) hash ^= tab[i+5]; 
            if ((k&0x40) == 0) hash ^= tab[i+6]; 
            if ((k&0x80) == 0) hash ^= tab[i+7]; 
        } 
        return (hash & mask); 
    } 
     
    /**//**
    * Zobrist Hashing
    */ 
    public static int zobrist( char[] key,int mask, int[][] tab) 
    { 
        int hash, i; 
   

补充:软件开发 , Java ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,