青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

牽著老婆滿街逛

嚴以律己,寬以待人. 三思而后行.
GMail/GTalk: yanglinbo#google.com;
MSN/Email: tx7do#yahoo.com.cn;
QQ: 3 0 3 3 9 6 9 2 0 .

大量Hash算法的實現

來源:http://hi.baidu.com/algorithms/blog/item/79caabee879ece2a2cf53440.html

Hash算法有很多很多種類。具體的可以參考之前我寫的Hash算法的一些分析。本處給大家提供一個集合了很多使用的Hash算法的類,應該可以滿足不少人的需要的:


/**
* 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;
   
for (hash=key.length, i=0; i<key.length; ++i)
     hash 
^= tab[i][key[i]];
   
return (hash & mask);
}


// LOOKUP3 
// 見Bob Jenkins(3).c文件

// 32位FNV算法
static int M_SHIFT = 0;
/**
* 32位的FNV算法
* @param data 數組
* @return int值
*/

    
public static int FNVHash(byte[] data)
    
{
        
int hash = (int)2166136261L;
        
for(byte b : data)
            hash 
= (hash * 16777619^ b;
        
if (M_SHIFT == 0)
            
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 = 16777619;
        
int hash = (int)2166136261L;
        
for(byte b:data)
            hash 
= (hash ^ b) * p;
        hash 
+= hash << 13;
        hash 
^= hash >> 7;
        hash 
+= hash << 3;
        hash 
^= hash >> 17;
        hash 
+= hash << 5;
        
return hash;
    }

    
/**
     * 改進的32位FNV算法1
     * @param data 字符串
     * @return int值
     
*/

    
public static int FNVHash1(String data)
    
{
        final 
int p = 16777619;
        
int hash = (int)2166136261L;
        
for(int i=0;i<data.length();i++)
            hash 
= (hash ^ data.charAt(i)) * p;
        hash 
+= hash << 13;
        hash 
^= hash >> 7;
        hash 
+= hash << 3;
        hash 
^= hash >> 17;
        hash 
+= hash << 5;
        
return hash;
    }


    
/**
     * Thomas Wang的算法,整數hash
     
*/
 
    
public static int intHash(int key)
    
{
      key 
+= ~(key << 15);
      key 
^= (key >>> 10);
      key 
+= (key << 3);
      key 
^= (key >>> 6);
      key 
+= ~(key << 11);
      key 
^= (key >>> 16);
      
return key;
    }

    
/**
     * RS算法hash
     * @param str 字符串
     
*/

    
public static int RSHash(String str)
    
{
        
int b    = 378551;
        
int a    = 63689;
        
int hash = 0;

       
for(int i = 0; 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 = 1315423911;

       
for(int i = 0; i < str.length(); i++)
       
{
          hash 
^= ((hash << 5+ str.charAt(i) + (hash >> 2));
       }


       
return (hash & 0x7FFFFFFF);
    }

    
/* End Of JS Hash Function */

    
/**
     * PJW算法
     
*/

    
public static int PJWHash(String str)
    
{
        
int BitsInUnsignedInt = 32;
        
int ThreeQuarters     = (BitsInUnsignedInt * 3/ 4;
        
int OneEighth         = BitsInUnsignedInt / 8;
        
int HighBits          = 0xFFFFFFFF << (BitsInUnsignedInt - OneEighth);
        
int hash              = 0;
        
int test              = 0;

       
for(int i = 0; i < str.length();i++)
       
{
          hash 
= (hash << OneEighth) + str.charAt(i);

          
if((test = hash & HighBits) != 0)
          
{
             hash 
= (( hash ^ (test >> ThreeQuarters)) & (~HighBits));
          }

       }


       
return (hash & 0x7FFFFFFF);
    }

    
/* End Of P. J. Weinberger Hash Function */

    
/**
     * ELF算法
     
*/

    
public static int ELFHash(String str)
    
{
        
int hash = 0;
        
int x    = 0;

       
for(int i = 0; i < str.length(); i++)
       
{
          hash 
= (hash << 4+ str.charAt(i);
          
if((x = (int)(hash & 0xF0000000L)) != 0)
          
{
             hash 
^= (x >> 24);
             hash 
&= ~x;
          }

       }


       
return (hash & 0x7FFFFFFF);
    }

    
/* End Of ELF Hash Function */

    
/**
     * BKDR算法
     
*/

    
public static int BKDRHash(String str)
    
{
        
int seed = 131// 31 131 1313 13131 131313 etc..
        int hash = 0;

       
for(int i = 0; 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 = 0;

       
for(int i = 0; i < str.length(); i++)
       
{
          hash 
= str.charAt(i) + (hash << 6+ (hash << 16- hash;
       }


       
return (hash & 0x7FFFFFFF);
    }

    
/* End Of SDBM Hash Function */

    
/**
     * DJB算法
     
*/

    
public static int DJBHash(String str)
    
{
       
int hash = 5381;

       
for(int i = 0; i < str.length(); i++)
       
{
          hash 
= ((hash << 5+ 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 = 0; i < str.length(); i++)
       
{
          hash 
= ((hash << 5^ (hash >> 27)) ^ str.charAt(i);
       }


       
return (hash & 0x7FFFFFFF);
    }

    
/* End Of DEK Hash Function */

    
/**
     * AP算法
     
*/

    
public static int APHash(String str)
    
{
        
int hash = 0;

       
for(int i = 0; i < str.length(); i++)
       
{
          hash 
^= ((i & 1== 0? ( (hash << 7^ str.charAt(i) ^ (hash >> 3)) :
                                   (
~((hash << 11^ str.charAt(i) ^ (hash >> 5)));
       }


//       return (hash & 0x7FFFFFFF);
       return hash;
    }

    
/* End Of AP Hash Function */
    
    
/**
     * JAVA自己帶的算法
     
*/

    
public static int java(String str)
{
   
int h = 0;
   
int off = 0;
   
int len = str.length();
   
for (int i = 0; i < len; i++)
   
{
    h 
= 31 * h + str.charAt(off++);
   }

   
return h;
}

    
    
/**
     * 混合hash算法,輸出64位的值
     
*/

    
public static long mixHash(String str)
    
{
    
long hash = str.hashCode();
    hash 
<<= 32;
    hash 
|= FNVHash1(str);
    
return hash;
    }

}

posted on 2008-05-09 09:51 楊粼波 閱讀(3095) 評論(0)  編輯 收藏 引用


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            国产精品爱久久久久久久| 欧美人与性禽动交情品| 久久9热精品视频| 国产精品久久久爽爽爽麻豆色哟哟| 国产主播一区二区三区| 亚洲欧美日韩另类精品一区二区三区 | 久久精品道一区二区三区| 欧美日韩p片| 亚洲美女在线观看| 亚洲黄页一区| 欧美波霸影院| 日韩视频久久| 亚洲乱码精品一二三四区日韩在线 | 黄色另类av| 久久久久久午夜| 亚洲资源在线观看| 国产精品视频成人| 性色av香蕉一区二区| 亚洲欧美日韩国产| 国内精品久久久久影院色| 玖玖综合伊人| 欧美顶级艳妇交换群宴| 一本久久知道综合久久| 亚洲天堂久久| 国内外成人在线视频| 欧美国产日韩免费| 欧美久久99| 欧美亚洲一区二区在线观看| 午夜欧美电影在线观看| 激情综合电影网| 亚洲黄色视屏| 国产精品久久久久久亚洲毛片 | 香蕉久久国产| 亚洲国产三级在线| 99日韩精品| 国产有码一区二区| 欧美激情一区三区| 欧美亚洲第一页| 久久久久国产成人精品亚洲午夜| 久久人人精品| 亚洲一区二区三区高清不卡| 欧美一区二区三区久久精品| 亚洲激情在线激情| 一区二区三区日韩精品视频| 国产视频一区在线观看| 欧美激情导航| 国产精品一二三视频| 欧美高清视频在线 | 亚洲裸体视频| 亚洲免费视频网站| 亚洲欧洲一级| 午夜日本精品| 一区二区三区高清视频在线观看| 性感少妇一区| 99精品欧美一区| 久久精品国产96久久久香蕉| 亚洲精品在线视频| 欧美一级专区| 这里是久久伊人| 久久久精品免费视频| 亚洲无毛电影| 久久综合色88| 欧美一区二区精品| 欧美激情第五页| 久久精品国产91精品亚洲| 欧美刺激午夜性久久久久久久| 午夜精品在线| 欧美黑人在线播放| 久久综合色天天久久综合图片| 欧美日韩国产免费观看| 久久综合伊人77777| 国产精品jizz在线观看美国| 欧美韩日一区二区| 久久av二区| 欧美日韩精品在线播放| 久久综合一区二区| 国产精品视频午夜| 亚洲九九精品| 亚洲国产色一区| 久久精品国产免费看久久精品| 亚洲小说欧美另类婷婷| 欧美成年人网站| 久久综合久色欧美综合狠狠| 国产精品爱久久久久久久| 亚洲激情视频网站| 在线看日韩av| 久久久久久一区二区| 久久爱另类一区二区小说| 欧美特黄一级大片| 亚洲精品在线三区| 亚洲乱码国产乱码精品精可以看| 狼人社综合社区| 久久久久久综合网天天| 国产精品视频网站| 亚洲欧美日韩一区二区在线| 亚洲一级黄色片| 欧美日韩亚洲一区二区三区| 亚洲经典在线看| 日韩一级二级三级| 欧美精品在线免费| 亚洲精品视频在线看| 一卡二卡3卡四卡高清精品视频| 欧美成va人片在线观看| 亚洲二区在线| 亚洲美女视频在线免费观看| 欧美久久一级| 99视频日韩| 午夜视频一区在线观看| 国产精品乱人伦一区二区| 亚洲午夜一区| 久久精品一区二区三区中文字幕 | 国产九区一区在线| 亚洲欧美在线一区| 久久精品国产精品| 激情另类综合| 免费观看日韩av| 亚洲电影在线播放| 99这里只有精品| 国产精品欧美久久| 欧美一区二区三区在线播放| 久久综合九色欧美综合狠狠| 亚洲激情一区| 欧美日韩直播| 久久av老司机精品网站导航| 免费亚洲婷婷| 一区二区三区你懂的| 国产酒店精品激情| 久久免费精品视频| 亚洲精品久久久久久久久久久久久| 一区二区高清视频| 国产欧美日韩精品a在线观看| 久久久精品性| 日韩一级裸体免费视频| 欧美一区影院| 国产伦精品一区二区三区视频黑人| 欧美中文字幕视频| 亚洲激精日韩激精欧美精品| 午夜精品免费在线| 亚洲高清123| 国产精品视频导航| 午夜电影亚洲| 欧美视频在线观看免费| 欧美亚洲视频| 亚洲免费成人av| 久久伊伊香蕉| 亚洲性xxxx| 在线观看欧美亚洲| 国产精品swag| 麻豆av一区二区三区| 一本在线高清不卡dvd| 久久最新视频| 亚洲自啪免费| 亚洲精品免费在线播放| 国产欧美一区二区精品秋霞影院| 你懂的视频欧美| 欧美与欧洲交xxxx免费观看 | 午夜精品一区二区三区在线 | 欧美mv日韩mv国产网站app| 亚洲一区图片| 亚洲日本va午夜在线电影 | 欧美综合第一页| 亚洲午夜视频在线| 亚洲精品久久嫩草网站秘色| 美腿丝袜亚洲色图| 久久xxxx精品视频| 午夜精品久久久久久久99樱桃| 亚洲国产欧美国产综合一区| 国产日韩在线视频| 国产精品视频内| 国产精品成人一区二区| 欧美黄在线观看| 久久蜜桃av一区精品变态类天堂| 亚洲一区二区视频在线观看| 亚洲区在线播放| 亚洲电影在线观看| 亚洲黑丝在线| 欧美高清视频在线观看| 欧美a级大片| 麻豆9191精品国产| 免费成人美女女| 免费在线观看日韩欧美| 久久婷婷国产麻豆91天堂| 性色一区二区| 性高湖久久久久久久久| 午夜精品福利在线| 午夜精品一区二区在线观看| 亚洲欧美99| 午夜精品久久久久久99热软件| 在线亚洲成人| 一区二区免费在线观看| 亚洲在线中文字幕| 亚洲女女女同性video| 亚洲综合三区| 欧美在线视频免费观看| 午夜宅男久久久| 久久精品主播| 欧美高清视频一区二区| 亚洲国产精品毛片| av成人免费| 亚洲欧美综合|