PHP中的Hash算法(2)
来源:未知 责任编辑:责任编辑 发表时间:2014-05-20 18:32 点击:次
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
相关新闻>>
- 发表评论
-
- 最新评论 更多>>