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

aurain
技術(shù)文摘
posts - 137,  comments - 268,  trackbacks - 0
**
* 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 一個(gè)質(zhì)數(shù)
* @return hash結(jié)果
*/

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);
}


/**
* 旋轉(zhuǎn)hash
* @param key 輸入字符串
* @param prime 質(zhì)數(shù)
* @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值,隨便找一個(gè)值,最好是質(zhì)數(shù)
*/

static int M_MASK = 0x8765fed1;
/**
* 一次一個(gè)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 輸入字節(jié)數(shù)組
* @param level 初始hash常量
* @return 結(jié)果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,計(jì)算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 數(shù)組
* @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;
    }

    
/**
     * 改進(jìn)的32位FNV算法1
     * @param data 數(shù)組
     * @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;
    }

    
/**
     * 改進(jìn)的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的算法,整數(shù)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 2010-07-21 08:54 閱讀(988) 評(píng)論(0)  編輯 收藏 引用 所屬分類: 算法與數(shù)據(jù)結(jié)構(gòu)

<2008年4月>
303112345
6789101112
13141516171819
20212223242526
27282930123
45678910

常用鏈接

留言簿(17)

隨筆分類(138)

隨筆檔案(137)

網(wǎng)絡(luò)開發(fā)

最新隨筆

搜索

  •  

積分與排名

  • 積分 - 502760
  • 排名 - 37

最新隨筆

最新評(píng)論

閱讀排行榜

評(píng)論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            伊人蜜桃色噜噜激情综合| 伊伊综合在线| 欧美一区二区三区在线| 午夜精品在线视频| 国内精品一区二区三区| 欧美成人日韩| 欧美精品乱人伦久久久久久| 亚洲视频在线播放| 国产精品网站一区| 久久人人爽人人爽爽久久| 另类国产ts人妖高潮视频| 亚洲三级视频在线观看| 日韩午夜激情电影| 国产麻豆综合| 免费观看成人| 欧美激情日韩| 欧美一区二区啪啪| 久久免费视频网| 99日韩精品| 性刺激综合网| 亚洲精品老司机| 亚洲一区二区三区四区五区午夜 | 一区二区三区四区五区视频 | 妖精视频成人观看www| 亚洲一区综合| 在线观看欧美日韩| 99精品视频免费| 国产一区二区三区四区| 亚洲国产精品视频一区| 欧美日韩国产一区精品一区| 久久精品夜色噜噜亚洲aⅴ| 欧美va天堂| 校园春色国产精品| 欧美成人69av| 欧美专区亚洲专区| 欧美成人四级电影| 久久精品国产精品亚洲综合| 欧美电影电视剧在线观看| 欧美一级大片在线观看| 欧美jizzhd精品欧美巨大免费| 亚洲欧美中文另类| 欧美α欧美αv大片| 欧美一区二区三区在线视频| 欧美成人免费小视频| 久久成人羞羞网站| 欧美日本在线看| 老色鬼精品视频在线观看播放| 欧美丝袜一区二区| 欧美国产大片| 国产一区二区三区日韩欧美| aa级大片欧美| 91久久亚洲| 久久黄色小说| 亚洲欧美一区二区三区极速播放| 欧美1区2区3区| 久久久高清一区二区三区| 欧美三级电影网| 亚洲第一区在线观看| 国产一区二区三区在线观看免费| 日韩视频免费看| 亚洲欧洲一区二区三区| 久久成人精品| 欧美一级理论片| 欧美日韩精品在线视频| 欧美大片免费观看| 国产专区欧美精品| 亚洲一区二区在| 一卡二卡3卡四卡高清精品视频| 久久九九热免费视频| 欧美亚洲一区三区| 国产精品video| 亚洲精品乱码久久久久久久久 | 午夜在线一区二区| 欧美日本亚洲视频| 亚洲国产精品一区二区www| 国产主播精品在线| 亚洲欧美在线aaa| 亚洲欧美日韩久久精品| 欧美日韩高清不卡| 亚洲国产精品一区制服丝袜| 一区视频在线| 性欧美videos另类喷潮| 亚洲欧美资源在线| 欧美三级电影精品| 99精品视频免费全部在线| 99国产欧美久久久精品| 蜜臀av国产精品久久久久| 久久亚裔精品欧美| 国产欧美一区二区三区在线老狼| 99精品视频网| 中文国产成人精品久久一| 欧美理论电影在线观看| 亚洲黄色av| 亚洲精品孕妇| 欧美风情在线观看| 亚洲国产精品日韩| 99视频在线精品国自产拍免费观看| 久久综合网色—综合色88| 欧美18av| 在线欧美电影| 美国十次成人| 欧美激情视频给我| 亚洲精品乱码久久久久久日本蜜臀| 蜜桃av一区二区| 亚洲国产精品电影在线观看| 最新69国产成人精品视频免费| 美女脱光内衣内裤视频久久影院| 免费观看不卡av| 最近看过的日韩成人| 欧美精品在线视频观看| 日韩视频中文| 亚洲一区欧美激情| 久久精品视频免费| 免费观看欧美在线视频的网站| 激情另类综合| 葵司免费一区二区三区四区五区| 欧美国产日韩一区| 日韩午夜激情av| 欧美日韩一区二区在线观看视频| 日韩视频一区二区在线观看| 亚洲香蕉网站| 国产乱肥老妇国产一区二| 欧美一级免费视频| 免费在线观看成人av| 亚洲精品国产品国语在线app| 欧美激情黄色片| 一区二区日韩免费看| 欧美一区二区在线免费观看| 国产亚洲精品v| 老**午夜毛片一区二区三区| 亚洲国产一区二区在线| 99精品视频免费| 国产精品久久久久天堂| 欧美在线一二三| 欧美福利一区二区三区| 一区二区三区欧美视频| 国产精品资源在线观看| 久久免费视频这里只有精品| 亚洲国产精品精华液网站| 亚洲一区二区三区在线播放| 国产日韩欧美不卡在线| 久久综合狠狠综合久久激情| 亚洲美女淫视频| 久久av红桃一区二区小说| 伊人色综合久久天天| 欧美日本高清视频| 性18欧美另类| 亚洲国产一区二区三区在线播 | 亚洲欧美在线一区| 黄色国产精品| 欧美裸体一区二区三区| 亚洲欧美日本国产专区一区| 免费看的黄色欧美网站| 一区二区三区国产| 国产亚洲毛片在线| 欧美成人久久| 午夜精品国产| 亚洲国产精品va在线看黑人动漫 | 亚洲天堂成人在线观看| 久久一区二区三区国产精品| 亚洲乱码国产乱码精品精| 国产精品家教| 玖玖玖国产精品| 亚洲一本视频| 欧美国产精品| 欧美亚洲一区二区在线观看| 亚洲人成7777| 国产欧美在线观看一区| 欧美电影电视剧在线观看| 欧美亚洲免费在线| 最新日韩在线视频| 久久精品中文字幕一区二区三区| 亚洲国产日韩一区| 国产精品免费区二区三区观看| 久久亚洲私人国产精品va| 亚洲视频欧美在线| 亚洲福利小视频| 久久久精品一区二区三区| 一本色道久久88亚洲综合88| 国产在线麻豆精品观看| 国产精品xvideos88| 另类专区欧美制服同性| 午夜精品久久久久久久男人的天堂 | 欧美性大战久久久久久久| 久久久久国产一区二区| 亚洲视频自拍偷拍| 亚洲国产成人午夜在线一区 | 另类av一区二区| 亚洲欧美网站| 一区二区精品| 136国产福利精品导航| 国产欧美日韩亚州综合| 欧美日韩在线高清| 欧美成年人视频网站欧美| 久久精品国产精品亚洲| 一区二区三区毛片| 最新中文字幕一区二区三区| 美女视频一区免费观看| 欧美在线免费看| 亚洲欧美日韩电影|