程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP中的Hash算法

PHP中的Hash算法

編輯:關於PHP編程

Hash Table是PHP的核心,這話一點都不過分.
PHP的數組,關聯數組,對象屬性,函數表,符號表,等等都是用HashTable來做為容器的.
PHP的HashTable采用的拉鏈法來解決沖突, 這個自不用多說, 我今天主要關注的就是PHP的Hash算法, 和這個算法本身透露出來的一些思想.
PHP的Hash采用的是目前最為普遍的DJBX33A (Daniel J. Bernstein, Times 33 with Addition), 這個算法被廣泛運用與多個軟件項目,Apache, Perl和Berkeley DB等. 對於字符串而言這是目前所知道的最好的哈希算法,原因在於該算法的速度非常快,而且分類非常好(沖突小,分布均勻).
算法的核心思想就是:
1.         hash(i) = hash(i-1) * 33 + str[i]</SPAN< li>
在zend_hash.h中,我們可以找到在PHP中的這個算法:
1.    static inline ulong zend_inline_hash_func(char *arKey, uint nKeyLength)
2.    {
3.        register ulong hash = 5381;
4.   
5.        /* variant with the hash unrolled eight times */
6.        for (; nKeyLength >= 8; nKeyLength -=   {
7.            hash = ((hash << 5) + hash) + *arKey++;
8.            hash = ((hash << 5) + hash) + *arKey++;
9.            hash = ((hash << 5) + hash) + *arKey++;
10.           hash = ((hash << 5) + hash) + *arKey++;
11.           hash = ((hash << 5) + hash) + *arKey++;
12.           hash = ((hash << 5) + hash) + *arKey++;
13.           hash = ((hash << 5) + hash) + *arKey++;
14.           hash = ((hash << 5) + hash) + *arKey++;
15.       }
16.       switch (nKeyLength) {
17.           case 7: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
18.           case 6: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
19.           case 5: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
20.           case 4: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
21.           case 3: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
22.           case 2: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */
23.           case 1: hash = ((hash << 5) + hash) + *arKey++; break;
24.           case 0: break;
25.   EMPTY_SWITCH_DEFAULT_CASE()
26.       }
27.       return hash;
28.   }</SPAN< li>
相比在Apache和Perl中直接采用的經典Times 33算法:
1.    hashing function used in Perl 5.005:
2.      # Return the hashed value of a string: $hash = perlhash("key")
3.      # (Defined by the PERL_HASH macro in hv.h)
4.      sub perlhash
5.      {
6.          $hash = 0;
7.          foreach (split //, shift) {
8.              $hash = $hash*33 + ord($_);
9.          }
10.         return $hash;
11.     }</SPAN< li>
在PHP的hash算法中, 我們可以看出很處細致的不同.
首先, 最不一樣的就是, PHP中並沒有使用直接乘33, 而是采用了:
1.      hash << 5 + has
這樣當然會比用乘快了.
然後, 特別要主意的就是使用的unrolled, 我前幾天看過一片文章講Discuz的緩存機制, 其中就有一條說是Discuz會根據帖子的熱度不同采用不同的緩存策略, 根據用戶習慣,而只緩存帖子的第一頁(因為很少有人會翻帖子).
於此類似的思想, PHP鼓勵8位一下的字符索引, 他以8為單位使用unrolled來提高效率, 這不得不說也是個很細節的,很細致的地方.
另外還有inline, register變量 … 可以看出PHP的開發者在hash的優化上也是煞費苦心
最後就是, hash的初始值設置成了5381, 相比在Apache中的times算法和Perl中的Hash算法(都采用初始hash為0), 為什麼選5381呢? 具體的原因我也不知道, 但是我發現了5381的一些特性:
1.    Magic Constant 5381:
2.      1. odd number
3.      2. prime number
4.      3. deficient number
5.      4. 001/010/100/000/101
看了這些, 我有理由相信這個初始值的選定能提供更好的分類.
至於說, 為什麼是Times 33而不是Times 其他數字, 在PHP Hash算法的注釋中也有一些說明, 希望對有興趣的同學有用:
1.      DJBX33A (Daniel J. Bernstein, Times 33 with Addition)
2.   
3.      This is Daniel J. Bernstein's popular `times 33' hash function as
4.      posted by him years ago on comp.lang.c. It basically uses a function
5.      like ``hash(i) = hash(i-1) * 33 + str[i]''. This is one of the best
6.      known hash functions for strings. Because it is both computed very
7.      fast and distributes very well.
8.   
9.      The magic of number 33, i.e. why it works better than many other
10.     constants, prime or not, has never been adequately explained by
11.     anyone. So I try an explanation: if one experimentally tests all
12.     multipliers between 1 and 256 (as RSE did now) one detects that even
13.     numbers are not useable at all. The remaining 128 odd numbers
14.     (except for the number 1) work more or less all equally well. They
15.     all distribute in an acceptable way and this way fill a hash table
16.     with an average percent of approx. 86%.
17.  
18.     If one compares the Chi^2 values of the variants, the number 33 not
19.     even has the best value. But the number 33 and a few other equally
20.     good numbers like 17, 31, 63, 127 and 129 have nevertheless a great
21.     advantage to the remaining numbers in the large set of possible
22.     multipliers: their multiply operation can be replaced by a faster
23.     operation based on just one shift plus either a single addition
24.     or subtraction operation. And because a hash function has to both
25.     distribute good _and_ has to be very fast to compute, those few
26.     numbers should be preferred and seems to be the reason why Daniel J.
27.     Bernstein also preferred it.
28.  
29.     www.2cto.com        -- Ralf S. Engelschall <[email protected]>
 
•     作者: Laruence
•     本文地址: http://www.laruence.com/2009/07/23/994.html

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved