加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

PHP中用hash实现的数组

发布时间:2020-12-13 05:57:23 所属栏目:PHP教程 来源:网络整理
导读:PHP中使用最多的非Array莫属了,那Array是如何实现的?在PHP内部Array通过一个hashtable来实现,其中使用链接法解决hash冲突的问题,这样最坏情况下,查找Array元素的复杂度为O(N),最好则为1. 而其计算字符串hash值的方法如下,将源码摘出来以供查备: div

PHP中使用最多的非Array莫属了,那Array是如何实现的?在PHP内部Array通过一个hashtable来实现,其中使用链接法解决hash冲突的问题,这样最坏情况下,查找Array元素的复杂度为O(N),最好则为1.
而其计算字符串hash值的方法如下,将源码摘出来以供查备:
<div class="codetitle"><a style="CURSOR: pointer" data="93020" class="copybut" id="copybut93020" onclick="doCopy('code93020')"> 代码如下:<div class="codebody" id="code93020">
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
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值
}

ps:对于以下函数,仍有两点不明:
hash = 5381设置的理由?
这种step=8的循环方式是为了效率么?

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读