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

aurain
技術文摘
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 一個質數
* @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 2010-07-21 08:54 閱讀(978) 評論(0)  編輯 收藏 引用 所屬分類: 算法與數據結構

<2010年7月>
27282930123
45678910
11121314151617
18192021222324
25262728293031
1234567

常用鏈接

留言簿(17)

隨筆分類(138)

隨筆檔案(137)

網絡開發

最新隨筆

搜索

  •  

積分與排名

  • 積分 - 500754
  • 排名 - 37

最新隨筆

最新評論

閱讀排行榜

評論排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            免费久久99精品国产| 玖玖在线精品| 亚洲另类一区二区| 亚洲欧美视频一区| 欧美久久久久久蜜桃| 亚洲大黄网站| 免费欧美电影| 你懂的视频一区二区| 国产精品一区一区| 午夜视频久久久| 欧美一区二视频| 激情综合网址| 亚洲国产精品久久久久秋霞蜜臀 | 午夜国产不卡在线观看视频| 亚洲校园激情| 国产精品视频你懂的| 亚洲无人区一区| 日韩视频永久免费| 欧美日韩视频不卡| 亚洲国产欧洲综合997久久| 亚洲第一页在线| 国产精品av一区二区| 久久国产精品第一页| 久久这里有精品视频| 亚洲精品在线一区二区| 中文亚洲视频在线| 娇妻被交换粗又大又硬视频欧美| 亚洲高清在线观看| 欧美午夜不卡在线观看免费 | 国产综合av| 亚洲日本va午夜在线电影| 欧美视频在线观看免费| 亚洲一区精品在线| 一本色道久久综合亚洲精品婷婷 | 久久国产精品久久久| 久久亚洲一区二区| 亚洲福利视频在线| 99av国产精品欲麻豆| 亚洲综合99| 亚洲第一在线综合在线| 香蕉久久一区二区不卡无毒影院| 国产亚洲欧美在线| 久久精品国产亚洲5555| 女女同性精品视频| 欧美在线地址| 免费观看日韩av| 亚洲欧美日韩一区二区三区在线| 久久高清一区| 午夜久久黄色| 欧美日本精品在线| 性欧美办公室18xxxxhd| 欧美男人的天堂| 欧美高清在线视频| 永久免费毛片在线播放不卡| 在线视频精品一| 亚洲免费播放| 久久精品99国产精品酒店日本| 黄色成人在线网站| 亚洲一区二区三| 国产精品99久久久久久宅男 | 一本色道精品久久一区二区三区| 亚洲一级影院| 99视频精品| 欧美成人精品一区| 男男成人高潮片免费网站| 国产色爱av资源综合区| 欧美韩国日本综合| 在线观看欧美黄色| 久久大综合网| 欧美中文字幕在线观看| 国产精品久久久久久久9999| 亚洲精品久久视频| 亚洲精品日韩精品| 美女视频一区免费观看| 欧美一级久久久久久久大片| 麻豆精品一区二区综合av| 久久嫩草精品久久久久| 国产欧美日韩一区二区三区| 亚洲国产综合91精品麻豆| 亚洲日本中文字幕| 欧美日韩国产123| 亚洲高清123| 亚洲人成7777| 欧美大片国产精品| 亚洲理论在线观看| 亚洲精品看片| 欧美日韩国产成人| 在线视频欧美日韩| 欧美一区二区性| 精品91在线| 久热精品视频| 亚洲人成啪啪网站| 亚洲视频一区二区在线观看 | 亚洲综合视频1区| 久久精品国产69国产精品亚洲| 国产视频欧美视频| 久久婷婷久久| 亚洲免费高清视频| 香蕉久久夜色精品| 激情视频亚洲| 欧美黄色aa电影| 亚洲全黄一级网站| 欧美中文字幕精品| 亚洲激精日韩激精欧美精品| 欧美日本国产精品| 性久久久久久久久| 欧美激情成人在线| 亚洲综合色自拍一区| 国产一区二区毛片| 欧美精品在线观看| 香蕉成人伊视频在线观看| 欧美高清在线观看| 日韩一二三区视频| 国产丝袜美腿一区二区三区| 欧美成人在线网站| 午夜久久一区| 亚洲激情在线视频| 久久久久久久91| 亚洲美女免费精品视频在线观看| 国产欧美一区二区精品性| 麻豆9191精品国产| 亚洲自拍偷拍网址| 欧美+亚洲+精品+三区| 亚洲图片激情小说| 在线日韩av| 国产精品嫩草影院av蜜臀| 免费看黄裸体一级大秀欧美| 亚洲欧美精品在线观看| 亚洲韩国青草视频| 美女久久一区| 香蕉乱码成人久久天堂爱免费| 韩曰欧美视频免费观看| 欧美亚洲第一区| 欧美精品三级| 久久综合狠狠| 久久精精品视频| 夜夜爽www精品| 亚洲第一网站| 欧美成人r级一区二区三区| 亚洲男人天堂2024| 99这里有精品| 日韩视频精品在线| 在线成人激情| 影音先锋中文字幕一区二区| 国产午夜精品一区二区三区视频| 欧美婷婷久久| 欧美日韩午夜激情| 老**午夜毛片一区二区三区| 亚洲一区二区三区三| 99re6这里只有精品视频在线观看| 欧美国产日韩一区二区三区| 每日更新成人在线视频| 久久午夜电影网| 久久在线视频| 欧美成人一区二区| 麻豆国产精品777777在线| 免费美女久久99| 亚洲精品小视频在线观看| 亚洲美女色禁图| 亚洲自拍偷拍色片视频| 久久久久久久97| 欧美日韩精品在线| 国产午夜精品美女毛片视频| 亚洲第一区在线| 亚洲一级免费视频| 久久精品日韩一区二区三区| 欧美二区在线观看| 亚洲最新在线视频| 久久国产精品久久国产精品| 欧美国产欧美亚洲国产日韩mv天天看完整 | 久久国产精品毛片| 欧美国产日韩视频| 亚洲色诱最新| 久久久精品动漫| 欧美日韩亚洲高清一区二区| 国产欧美视频一区二区| 亚洲激情中文1区| 欧美亚洲视频一区二区| 欧美暴力喷水在线| 亚洲一区二区三区高清不卡| 久久综合网色—综合色88| 欧美性做爰猛烈叫床潮| 亚洲国产成人久久综合| 午夜精品在线| 亚洲乱码日产精品bd| 久久精品99无色码中文字幕| 欧美日韩在线一区二区| 最新亚洲视频| 久久久久久久久久久成人| 一本大道久久a久久精二百| 久色婷婷小香蕉久久| 国产精品五月天| 一区二区三区精品国产| 免费高清在线一区| 亚洲制服丝袜在线| 欧美婷婷在线| 亚洲毛片在线看| 欧美激情亚洲| 久久久国产视频91| 好吊色欧美一区二区三区四区|