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

The Way of C++

  C++博客 :: 首頁 :: 聯系 :: 聚合  :: 管理
  55 Posts :: 0 Stories :: 19 Comments :: 0 Trackbacks

公告

The first time i use this blog, i will write something that i learn which i think is worth write down.

常用鏈接

留言簿(3)

我參與的團隊

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

**
* 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-03-11 18:44 koson 閱讀(1241) 評論(0)  編輯 收藏 引用 所屬分類: ACM
青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            18成人免费观看视频| 午夜精品国产更新| 亚洲一二三四区| 亚洲性视频网站| 亚洲免费一区二区| 久久国产精品一区二区三区| 久久精品国产综合精品| 久久综合一区| 亚洲国产日韩在线一区模特| 欧美激情精品久久久久久黑人| 亚洲电影av| 一本色道久久综合亚洲精品小说| 亚洲免费伊人电影在线观看av| 欧美在线播放视频| 欧美精品99| 国产精品毛片一区二区三区| 激情久久一区| 亚洲一区二区欧美日韩| 久久久美女艺术照精彩视频福利播放| 欧美激情片在线观看| 亚洲午夜免费福利视频| 麻豆免费精品视频| 国产精品一区二区男女羞羞无遮挡 | 亚洲青色在线| 亚洲欧美日韩一区二区三区在线观看 | 免费成人高清视频| 亚洲区一区二| 久久福利影视| 国产精品大片| 91久久在线视频| 久久高清国产| 日韩亚洲在线| 蜜桃av一区二区在线观看| 国产精品你懂的在线| 亚洲激情视频网站| 久久久噜噜噜久久中文字免| 在线视频日本亚洲性| 欧美高清hd18日本| 亚洲电影天堂av| 久久久久久久久一区二区| 99国产精品国产精品久久| 免费成人在线观看视频| 狠狠色丁香婷综合久久| 欧美在线free| 亚洲欧美精品伊人久久| 国产精品日韩精品| 亚洲免费婷婷| 亚洲视频综合| 国产精品成人一区二区三区吃奶| 亚洲精品视频中文字幕| 欧美激情一区三区| 欧美大片91| 亚洲精品乱码久久久久久久久| 久久综合久色欧美综合狠狠| 欧美一区二区三区视频免费| 国产日韩欧美综合在线| 欧美在线视频一区| 午夜精品成人在线| 狠狠色噜噜狠狠狠狠色吗综合| 久久精品中文字幕一区| 午夜精品久久久99热福利| 国产欧美日本| 久久免费国产精品| 久久综合99re88久久爱| 亚洲国产岛国毛片在线| 欧美激情乱人伦| 欧美精品久久久久久久免费观看 | 亚洲免费观看高清完整版在线观看| 欧美aⅴ一区二区三区视频| 亚洲啪啪91| 一区二区三区毛片| 国产精品午夜在线| 久久久夜精品| 欧美a级一区| 亚洲一级黄色av| 性欧美长视频| 亚洲欧洲精品一区二区三区不卡 | 亚洲精品国产精品国自产在线| 欧美成人在线影院| 在线视频日本亚洲性| 亚洲图色在线| 伊人激情综合| 亚洲国产日韩欧美| 欧美日韩国产精品一区| 午夜精品在线视频| 久久综合网色—综合色88| 亚洲人成欧美中文字幕| 国产精品99久久不卡二区| 国产亚洲一区在线| 亚洲国产日韩在线| 国产欧美日韩激情| 欧美国产一区二区三区激情无套| 欧美激情在线观看| 久久av一区二区三区漫画| 蜜臀a∨国产成人精品| 亚洲欧美国产日韩中文字幕| 久久精品中文| 亚洲欧美日韩精品久久| 免费91麻豆精品国产自产在线观看| 亚洲影视在线| 美女精品一区| 久久激情五月激情| 欧美日韩免费区域视频在线观看| 久久久久久久91| 国产精品久久网| 亚洲精品国产拍免费91在线| 国产欧美日韩一区二区三区在线| 最新亚洲一区| 在线看成人片| 欧美一区二区三区免费观看| 亚洲视频中文| 欧美aaa级| 欧美mv日韩mv国产网站| 国产欧美亚洲视频| 一区二区三区日韩欧美精品| 亚洲国产一区视频| 久久精品视频99| 久久成人精品一区二区三区| 欧美日韩在线免费| 亚洲人成网站777色婷婷| 在线观看欧美亚洲| 久久精品综合| 久久综合给合久久狠狠色| 国产精品中文在线| 亚洲一区二区三区成人在线视频精品| 日韩一二三在线视频播| 欧美14一18处毛片| 亚洲第一毛片| 亚洲精品乱码| 欧美激情网友自拍| 亚洲人成绝费网站色www| 最近中文字幕日韩精品| 另类春色校园亚洲| 欧美激情欧美激情在线五月| 亚洲国产成人精品久久| 美腿丝袜亚洲色图| 亚洲激情视频在线| 亚洲免费精彩视频| 欧美美女操人视频| 99精品福利视频| 亚洲欧美日韩国产| 国产欧美日韩精品在线| 亚洲一区二区在线看| 亚洲精品黄色| 亚洲电影观看| 免费在线国产精品| 亚洲成人在线免费| 亚洲精品国产品国语在线app| 久久一区二区三区av| 欧美超级免费视 在线| 亚洲激情综合| 欧美日韩国产精品一卡| 亚洲伊人一本大道中文字幕| 久久久久久久尹人综合网亚洲 | 麻豆精品在线视频| 91久久久久久久久| 亚洲小说欧美另类婷婷| 国产精品一区二区久激情瑜伽| 欧美一区午夜精品| 欧美激情在线| 先锋影音国产一区| 亚洲国产高清视频| 欧美午夜欧美| 久久久不卡网国产精品一区| 亚洲激情社区| 久久国产精品网站| 亚洲精品资源美女情侣酒店| 欧美日本韩国一区二区三区| 亚洲一区二区三区欧美 | 欧美国产日产韩国视频| 中文精品视频一区二区在线观看| 国产精品腿扒开做爽爽爽挤奶网站| 欧美一区二区三区视频| 最新国产乱人伦偷精品免费网站 | 亚洲一区二区三区在线视频| 国产精品午夜av在线| 猫咪成人在线观看| 午夜精品久久久久久久99黑人| 欧美成年人视频| 欧美一区二区黄色| 99热这里只有精品8| 国内久久婷婷综合| 欧美午夜不卡视频| 你懂的一区二区| 欧美制服第一页| 亚洲视频欧洲视频| 亚洲国产精品成人久久综合一区| 欧美综合77777色婷婷| 一区二区三区www| 亚洲国产你懂的| 国产一区二区三区的电影| 欧美视频三区在线播放| 乱码第一页成人| 久久久久久久欧美精品| 西西人体一区二区| 亚洲综合99| 亚洲一区二区三区高清 | 亚洲免费成人| 欧美激情视频网站| 久久久噜噜噜|