帝国CMS模板大全
www.admin99.cn
www.92cms.cn 帝国CMS模板下载站!,情怀,养站,二次开发!源码需求比较大的一站式会员下载,价更省!!!

php hash算法实现数组的方法 - php高级应用

php hash算法实现数组的方法

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

static  inline ulong zend_inline_hash_func( const  char *arKey, uint nKeyLength)  
{  
register ulong hash = 5381;  //此处初始值的设置有什么玄机么?   
/* variant with the hash unrolled eight times */   
for  (; nKeyLength >= 8; nKeyLength -= 8) {  //这种step=8的方式是为何?   
hash = ((hash << 5) + hash) + *arKey++;  
hash = ((hash << 5) + hash) + *arKey++;  
hash = ((hash << 5) + hash) + *arKey++;  
hash = ((hash << 5) + hash) + *arKey++;  //比直接*33要快   
hash = ((hash << 5) + hash) + *arKey++;  
hash = ((hash << 5) + hash) + *arKey++;  
hash = ((hash << 5) + hash) + *arKey++;  
hash = ((hash << 5) + hash) + *arKey++;  
}  
switch  (nKeyLength) {  
case  7: hash = ((hash << 5) + hash) + *arKey++;  /* fallthrough… */   //此处是将剩余的字符hash //开源代码phpfensi.com  
case  6: hash = ((hash << 5) + hash) + *arKey++;  /* fallthrough… */   
case  5: hash = ((hash << 5) + hash) + *arKey++;  /* fallthrough… */   
case  4: hash = ((hash << 5) + hash) + *arKey++;  /* fallthrough… */   
case  3: hash = ((hash << 5) + hash) + *arKey++;  /* fallthrough… */   
case  2: hash = ((hash << 5) + hash) + *arKey++;  /* fallthrough… */   
case  1: hash = ((hash << 5) + hash) + *arKey++;  break ;  
case  0:  break ;  
EMPTY_SWITCH_DEFAULT_CASE()  
}  
return  hash; //返回hash值   
}

赞(0)
版权声明:本文采用知识共享 署名4.0国际许可协议 [BY-NC-SA] 进行授权
文章名称:《php hash算法实现数组的方法 - php高级应用》
文章链接:https://www.admin99.cn/4635
本站资源仅供个人学习交流,请于下载后24小时内删除,不允许用于商业用途,否则法律问题自行承担。
QQ站长交流群:953950264

登录

找回密码

注册