zoukankan      html  css  js  c++  java
  • PHP中Array的hash函数实现

    PHP中使用最多的非Array莫属了,那Array是如何实现的?

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

     

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

    ps:对于以下函数,仍有两点不明:

    1.  hash = 5381设置的理由?

    2.  这种step=8的循环方式是为了效率么?

     

    Php代码  

    1. static inline ulong zend_inline_hash_func(const char *arKey, uint nKeyLength)  
    2. {  
    3.     register ulong hash = 5381;                                                   //此处初始值的设置有什么玄机么?  
    4.   
    5.     /* variant with the hash unrolled eight times */  
    6.     for (; nKeyLength >= 8; nKeyLength -= 8) {                         //这种step=8的方式是为何?  
    7.         hash = ((hash << 5) + hash) + *arKey++;  
    8.         hash = ((hash << 5) + hash) + *arKey++;  
    9.         hash = ((hash << 5) + hash) + *arKey++;  
    10.         hash = ((hash << 5) + hash) + *arKey++;                         //比直接*33要快  
    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.         case 7: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */                             //此处是将剩余的字符hash  
    18.         case 6: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */  
    19.         case 5: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */  
    20.         case 4: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */  
    21.         case 3: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */  
    22.         case 2: hash = ((hash << 5) + hash) + *arKey++; /* fallthrough... */                       
    23.         case 1: hash = ((hash << 5) + hash) + *arKey++; break;  
    24.         case 0: break;  
    25. EMPTY_SWITCH_DEFAULT_CASE()  
    26.     }     
    27.     return hash;                                                                //返回hash值  
    28. }  
  • 相关阅读:
    海龟交易
    暑假攻略:怎样让孩子过一个充实又省钱的假期
    值得追随
    在哪里能找的你想要的答案?
    顺势加仓策略
    交易中 你的加仓策略是怎样的?背后的逻辑是什么?
    驻守深寒:寻找那些有效地关键K线
    统计相关
    求助Ubuntu16.10如何设置默认启动为字符界面
    【Linux系列】Ubuntu ping通,xshell无法连接
  • 原文地址:https://www.cnblogs.com/mingaixin/p/4318834.html
Copyright © 2011-2022 走看看