用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php hash算法实现数组的方法

时间:2015-01-23  来源:西部数据  作者:西部数据

PHP中使用最多的非Array莫属了,那Array是如何实现的?在PHP内部Array通过一个hashtable来实现,其中使用链接法解决hash冲突的问题,这样最坏情况下,查找Array元素的复杂度为O(N),最好则为1.

  1. static inline ulong zend_inline_hash_func(const char *arKey, uint nKeyLength)  
  2. {  
  3. register ulong hash = 5381; //此处初始值的设置有什么玄机么?  
  4. /* variant with the hash unrolled eight times */  
  5. for (; nKeyLength >= 8; nKeyLength -= 8) { //这种step=8的方式是为何?  
  6. hash = ((hash << 5) + hash) + *arKey++;  
  7. hash = ((hash << 5) + hash) + *arKey++;  
  8. hash = ((hash << 5) + hash) + *arKey++;  
  9. hash = ((hash << 5) + hash) + *arKey++; //比直接*33要快  
  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. }  
  15. switch (nKeyLength) {  
  16. case 7: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */ //此处是将剩余的字符hash //开源代码phpfensi.com 
  17. case 6: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */  
  18. case 5: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */  
  19. case 4: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */  
  20. case 3: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */  
  21. case 2: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */  
  22. case 1: hash = ((hash << 5) + hash) + *arKey++; break;  
  23. case 0: break;  
  24. EMPTY_SWITCH_DEFAULT_CASE()  
  25. }  
  26. return hash;//返回hash值  
  27. }
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
栏目更新
栏目热门