首页 > 作文

PHP中的Hash算法

更新时间:2023-04-07 05:45:44 阅读: 评论:0

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. ca 7: hash = ((hash << 5) + hash) + *arkey++; /* fallthrough… */

18. ca 6: hash = ((hash << 5) + hash) + *arkey++; /* fallthrough… */

19. ca 5: hash = ((hash << 5) + hash) + *arkey++; /* fallthrough… */

20. ca 4: hash = ((hash << 5) + hash) + *arkey++; /* fallthrough… */

21. ca 3: hash = ((hash << 5) + hash) + *arkey++; /* fallthrough… */

22. ca 2: hash = ((hash << 5) + hash) + *arkey++; /* fallthrough… */

23. ca 1: hash = ((hash << 5) + hash) + *arkey++; break;

24. ca 0: break;

25. empty_switch_default_ca()

26. }

27. return hash;

28. }</span< li>

相比在apache和perl中直接采用的经典times 33算法:

1. hashing function ud 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 com描写秋天的词语有哪些p.lang.c. it basically us a function

5. like “hash(i) = hash(i-1) * 33 + s职称评审论文tr[i]”. this is one of the best

6. known hash functions for strings. becau 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 r did now) one detects that even

13. numbers are not uable 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 t of possible

22. multipliers: their multiply operation can be replaced by a faster

23. operation bad on just one shift plus either a single addition

24. or subtraction operation. and becau a hash function has to both

25. distribute good _and_ has to be very fast to compute, tho few

26. numbers should be preferred and ems to be the reason why daniel j.

27. bernstein also preferred it.

28.

29. www.2cto.com — ralf s. engelschall <r@engelschall.com>



• 作者: laruence

• 本文地址: /d/file/titlepic/2831.html

本文发布于:2023-04-07 05:45:43,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/0890529b92a39be54623196d040fdd77.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:PHP中的Hash算法.doc

本文 PDF 下载地址:PHP中的Hash算法.pdf

标签:算法   缓存   思想   数组
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图