您的位置:首页 > 编程语言 > PHP开发

PHP的数组结构是用哈希表实现的

2014-11-10 21:06 218 查看
今天回顾学习了PHP中变量实现的方法,在浏览其源码是发现在PHP中所有的数据类型通过一个union存储。php语言是弱类型语言,其实现中通过记录变量的类型和值来实现其管理。

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

而其计算字符串hash值的方法如下,将源码摘出来以供查备:

view
source

print?

01
static
 
inline
ulong zend_inline_hash_func(
const
 
char
*arKey, uint nKeyLength)
02
{
03
    
register
ulong hash = 5381;                                                   
//此处初始值的设置有什么玄机么?
04
    
/*
variant with the hash unrolled eight times */
05
    
for
 
(;
nKeyLength >= 8; nKeyLength -= 8) {                         
//这种step=8的方式是为何?
06
        
hash
= ((hash << 5) + hash) + *arKey++;
07
        
hash
= ((hash << 5) + hash) + *arKey++;
08
        
hash
= ((hash << 5) + hash) + *arKey++;
09
        
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
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
}
ps:对于以下函数,仍有两点不明:
hash = 5381设置的理由?
这种step=8的循环方式是为了效率么?
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: