php-perl哈希算法实现(times33哈希算法)


Posted in PHP onDecember 30, 2013
APR_DECLARE_NONSTD(unsigned int) apr_hashfunc_default(const char *char_key,
                                                      apr_ssize_t *klen)
{
    unsigned int hash = 0;
    const unsigned char *key = (const unsigned char *)char_key;
    const unsigned char *p;
    apr_ssize_t i;    /*
     * This is the popular `times 33' hash algorithm which is used by
     * perl and also appears in Berkeley DB. This is one of the best
     * known hash functions for strings because it is both computed
     * very fast and distributes very well.
     *
     * The originator may be Dan Bernstein but the code in Berkeley DB
     * cites Chris Torek as the source. The best citation I have found
     * is "Chris Torek, Hash function for text in C, Usenet message
     * <27038@mimsy.umd.edu> in comp.lang.c , October, 1990." in Rich
     * Salz's USENIX 1992 paper about INN which can be found at
     * .
     *
     * The magic of number 33, i.e. why it works better than many other
     * constants, prime or not, has never been adequately explained by
     * anyone. So I try an explanation: if one experimentally tests all
     * multipliers between 1 and 256 (as I did while writing a low-level
     * data structure library some time ago) one detects that even
     * numbers are not useable at all. The remaining 128 odd numbers
     * (except for the number 1) work more or less all equally well.
     * They all distribute in an acceptable way and this way fill a hash
     * table with an average percent of approx. 86%.
     *
     * If one compares the chi^2 values of the variants (see
     * Bob Jenkins ``Hashing Frequently Asked Questions'' at
     * http://burtleburtle.net/bob/hash/hashfaq.html for a description
     * of chi^2), the number 33 not even has the best value. But the
     * number 33 and a few other equally good numbers like 17, 31, 63,
     * 127 and 129 have nevertheless a great advantage to the remaining
     * numbers in the large set of possible multipliers: their multiply
     * operation can be replaced by a faster operation based on just one
     * shift plus either a single addition or subtraction operation. And
     * because a hash function has to both distribute good _and_ has to
     * be very fast to compute, those few numbers should be preferred.
     *
     *                  -- Ralf S. Engelschall 
     */
    if (*klen == APR_HASH_KEY_STRING) {
        for (p = key; *p; p++) {
            hash = hash * 33 + *p;
        }
        *klen = p - key;
    }
    else {
        for (p = key, i = *klen; i; i--, p++) {
            hash = hash * 33 + *p;
        }
    }
    return hash;
}

对函数注释部分的翻译: 这是很出名的times33哈希算法,此算法被perl语言采用并在Berkeley DB中出现.它是已知的最好的哈希算法之一,在处理以字符串为键值的哈希时,有着极快的计算效率和很好哈希分布.最早提出这个算法的是Dan Bernstein,但是源代码确实由Clris Torek在Berkeley DB出实作的.我找到的最确切的引文中这样说”Chris Torek,C语言文本哈希函数,Usenet消息<<27038@mimsy.umd.edu> in comp.lang.c ,1990年十月.”在Rich Salz于1992年在USENIX报上发表的讨论INN的文章中提到.这篇文章可以在上找到. 33这个奇妙的数字,为什么它能够比其他数值效果更好呢?无论重要与否,却从来没有人能够充分说明其中的原因.因此在这里,我来试着解释一下.如果某人试着测试1到256之间的每个数字(就像我前段时间写的一个底层数据结构库那样),他会发现,没有哪一个数字的表现是特别突出的.其中的128个奇数(1除外)的表现都差不多,都能够达到一个能接受的哈希分布,平均分布率大概是86%. 如果比较这128个奇数中的方差值(gibbon:统计术语,表示随机变量与它的数学期望之间的平均偏离程度)的话(见Bob Jenkins的<哈希常见疑问>http://burtleburtle.net/bob/hash/hashfaq.html,中对平方差的描述),数字33并不是表现最好的一个.(gibbon:这里按照我的理解,照常理,应该是方差越小稳定,但是由于这里不清楚作者方差的计算公式,以及在哈希离散表,是不是离散度越大越好,所以不得而知这里的表现好是指方差值大还是指方差值小),但是数字33以及其他一些同样好的数字比如 17,31,63,127和129对于其他剩下的数字,在面对大量的哈希运算时,仍然有一个大大的优势,就是这些数字能够将乘法用位运算配合加减法来替换,这样的运算速度会提高.毕竟一个好的哈希算法要求既有好的分布,也要有高的计算速度,能同时达到这两点的数字很少.

PHP 相关文章推荐
php 数组的合并、拆分、区别取值函数集
Feb 15 PHP
php中去除所有js,html,css代码
Oct 12 PHP
PHP学习笔记之二
Jan 17 PHP
php检测网页是否被百度收录的函数代码
Oct 09 PHP
用php简单实现加减乘除计算器
Jan 06 PHP
PHP常用数组函数介绍
Jul 28 PHP
深入探究PHP的多进程编程方法
Aug 18 PHP
PHP自带方法验证邮箱是否存在
Feb 01 PHP
PHP采用超长(超大)数字运算防止数字以科学计数法显示的方法
Apr 01 PHP
PHP中include/require/include_once/require_once使用心得
Aug 28 PHP
yii框架无限极分类的实现方法
Apr 08 PHP
PHP长网址与短网址的实现方法
Oct 13 PHP
php实现在线生成条形码示例分享(条形码生成器)
Dec 30 #PHP
md5 16位二进制与32位字符串相互转换示例
Dec 30 #PHP
微信扫描二维码登录网站代码示例
Dec 30 #PHP
浅谈PHP变量作用域以及地址引用问题
Dec 27 #PHP
一个好用的PHP验证码类实例分享
Dec 27 #PHP
PHP连接SQLServer2005方法及代码
Dec 26 #PHP
php截取中文字符串不乱码的方法
Dec 25 #PHP
You might like
十天学会php之第十天
2006/10/09 PHP
PHP 采集程序原理分析篇
2010/03/05 PHP
php ftp文件上传函数(基础版)
2010/06/03 PHP
PHP投票系统防刷票判断流程分析
2012/02/04 PHP
php模拟post行为代码总结(POST方式不是绝对安全)
2012/02/22 PHP
又一个PHP实现的冒泡排序算法分享
2014/08/21 PHP
MyEclipse常用配置图文教程
2014/09/11 PHP
php单例模式示例分享
2015/02/12 PHP
PHP错误处理函数
2016/04/03 PHP
PHP pthreads v3下同步处理synchronized用法示例
2020/02/21 PHP
在JavaScript中通过URL传递汉字的方法
2007/04/09 Javascript
window.onload 加载完毕的问题及解决方案(上)
2009/07/09 Javascript
js中的setInterval和setTimeout使用实例
2014/05/09 Javascript
jQuery实现简单的网页换肤效果示例
2016/09/18 Javascript
node.js入门教程之querystring模块的使用方法
2017/02/27 Javascript
angularJS模态框$modal实例代码
2017/05/27 Javascript
详解使用webpack打包编写一个vue-toast插件
2017/11/08 Javascript
解决vue 中 echart 在子组件中只显示一次的问题
2018/08/07 Javascript
微信小程序异步API为Promise简化异步编程的操作方法
2018/08/14 Javascript
浅谈Vue 自动化部署打包上线
2020/06/14 Javascript
[42:32]DOTA2上海特级锦标赛B组资格赛#2 Fnatic VS Spirit第二局
2016/02/27 DOTA
Python中super关键字用法实例分析
2015/05/28 Python
Python实现查看系统启动项功能示例
2018/05/10 Python
Python用Try语句捕获异常的实例方法
2019/06/26 Python
python射线法判断一个点在图形区域内外
2019/06/28 Python
Python的轻量级ORM框架peewee使用教程
2021/02/05 Python
Charlotte Tilbury英国官网:英国彩妆品牌
2017/05/26 全球购物
美国购买汽车零件网站:Buy Auto Parts
2018/04/02 全球购物
Gap英国官网:Gap UK
2018/07/18 全球购物
意大利运动服减价商店:ScontoSport
2020/03/10 全球购物
三下乡活动方案
2014/01/31 职场文书
经营目标管理责任书
2014/07/25 职场文书
义务教育学校标准化建设汇报材料
2014/08/16 职场文书
中学教师暑期培训方案
2014/08/27 职场文书
2014最新房贷收入证明范本
2014/09/12 职场文书
Python实现Telnet自动连接检测密码的示例
2021/04/16 Python