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

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>
            国产有码在线一区二区视频| 91久久夜色精品国产九色| 日韩视频一区二区在线观看| 亚洲国产精品va在线观看黑人| 亚洲性夜色噜噜噜7777| 亚洲一区精品电影| 久久国产精品亚洲77777| 欧美一区亚洲一区| 牛牛影视久久网| 亚洲激情电影中文字幕| 亚洲网址在线| 久久综合国产精品台湾中文娱乐网| 美女国产一区| 国产精品视频内| 伊人久久大香线蕉综合热线| 99在线视频精品| 欧美在线高清视频| 亚洲激情另类| 午夜精品免费| 美国十次成人| 一区二区三区久久久| 久久成人免费日本黄色| 欧美福利一区| 国模吧视频一区| 亚洲一区二区四区| 欧美国产日本| 久久国产精品第一页| 欧美日韩一区二区三区高清| 在线免费不卡视频| 午夜一级久久| 日韩性生活视频| 麻豆免费精品视频| 国产亚洲精品v| 亚洲影视中文字幕| 亚洲国产精品va| 久久综合999| 国产一区二区欧美日韩| 亚洲男人天堂2024| 亚洲日本中文| 久久一综合视频| 激情视频一区| 久久手机精品视频| av成人免费在线观看| 欧美精品成人| 日韩天天综合| 亚洲人体影院| 欧美精品电影在线| 亚洲精品综合久久中文字幕| 欧美成人国产| 亚洲天堂网站在线观看视频| 午夜精品久久久久久久久久久| 久久综合五月| 狠狠色丁香久久婷婷综合丁香| 性欧美大战久久久久久久免费观看| 亚洲一级免费视频| 亚洲日本在线视频观看| 欧美福利一区二区| 日韩视频在线一区二区| 欧美激情一区二区在线| 快射av在线播放一区| 亚洲国产清纯| 亚洲国产天堂久久国产91| 欧美v日韩v国产v| 亚洲三级色网| 亚洲精品乱码久久久久久| 欧美日韩ab片| 亚洲欧美成人一区二区在线电影 | 国内精品久久久久国产盗摄免费观看完整版 | 久久久久久一区二区| 国产专区精品视频| 久久米奇亚洲| 免费在线亚洲| 亚洲综合清纯丝袜自拍| 亚洲免费在线看| 黑人操亚洲美女惩罚| 欧美高清视频在线| 欧美精品久久一区二区| 亚洲欧美日韩综合| 欧美中文在线观看国产| 亚洲第一主播视频| 亚洲激情视频在线播放| 国产精品高潮粉嫩av| 午夜精品久久一牛影视| 欧美一区在线视频| 亚洲精品乱码久久久久久蜜桃麻豆| 亚洲精品欧美专区| 欧美黄色aaaa| 亚洲欧美一区二区原创| 久久不见久久见免费视频1| 亚洲精品久久7777| 亚洲视频在线观看视频| 伊人男人综合视频网| 亚洲巨乳在线| 悠悠资源网亚洲青| 这里是久久伊人| 亚洲第一综合天堂另类专| 亚洲图色在线| 亚洲精品免费一二三区| 欧美一二区视频| 亚洲人成高清| 欧美在线视频一区二区三区| 一区二区三区国产在线观看| 欧美在线观看www| 一区二区三区蜜桃网| 久久久青草婷婷精品综合日韩| 亚洲一区二区三区三| 久久亚洲一区二区| 亚洲欧美日本国产有色| 欧美激情视频一区二区三区在线播放| 久久久亚洲一区| 欧美精品一区二区三区高清aⅴ| 欧美一级久久久久久久大片| 欧美激情视频给我| 老司机一区二区三区| 国产毛片一区| 一区二区三区日韩精品视频| 亚洲九九精品| 免费在线观看成人av| 久久亚洲不卡| 国产婷婷色一区二区三区在线 | 欧美~级网站不卡| 久久久国产精品亚洲一区| 国产精品久久久久久影视 | 久久综合久久久| 久久免费99精品久久久久久| 国产美女一区二区| 一区二区国产在线观看| 一本色道**综合亚洲精品蜜桃冫 | 亚洲激情黄色| 在线看国产一区| 久久久欧美一区二区| 久久人人爽人人爽| 韩国av一区| 久久久xxx| 欧美激情第8页| 亚洲日韩成人| 欧美精品一区二区视频| 亚洲人成在线观看一区二区| 一二三区精品福利视频| 欧美日韩一区二区三区在线视频| 日韩视频一区二区在线观看| 亚洲一区二区精品在线| 国产精品久在线观看| 一区二区三区免费看| 亚洲免费婷婷| 国产日韩欧美麻豆| 久久精品亚洲精品国产欧美kt∨| 久久中文在线| 日韩一级黄色大片| 国产精品久久久久7777婷婷| 亚洲综合99| 蜜桃av噜噜一区二区三区| 亚洲国产成人久久综合一区| 欧美激情精品久久久久久免费印度| 亚洲美女电影在线| 在线一区二区视频| 欧美freesex8一10精品| 亚洲巨乳在线| 久久久久久久久岛国免费| 国产无遮挡一区二区三区毛片日本| 久久精品1区| 亚洲国产专区| 午夜在线a亚洲v天堂网2018| 在线不卡中文字幕| 欧美日韩精品免费在线观看视频| 亚洲一区二区免费视频| 久久久久久网站| av成人免费观看| 国产精品视频99| 国产精品蜜臀在线观看| 99精品久久久| 久久精品国产亚洲aⅴ| 亚洲黄页一区| 国产精品欧美在线| 久久久久久香蕉网| 日韩视频精品在线观看| 久久久久看片| 在线亚洲+欧美+日本专区| 国产欧美综合一区二区三区| 欧美成人小视频| 小黄鸭精品密入口导航| 91久久精品日日躁夜夜躁国产| 欧美一级网站| 亚洲天堂成人在线观看| 亚洲黄色在线| 国语自产偷拍精品视频偷| 欧美三级电影大全| 麻豆av一区二区三区| 午夜天堂精品久久久久| 999在线观看精品免费不卡网站| 欧美插天视频在线播放| 欧美一区二区三区另类| 一区二区三区回区在观看免费视频| 国产欧美一级| 国产精品分类| 欧美性一区二区| 欧美精品一区二区三| 99精品免费| 亚洲精品一区二区网址| 亚洲国产精品女人久久久|