백엔드 개발 PHP 튜토리얼 PHP中的Hash算法_PHP教程

PHP中的Hash算法_PHP教程

Jul 13, 2016 pm 05:47 PM
hash php table 협회 물체 재산 정렬 핵심 ~의 연산

Hash Table是PHP的核心,这话一点都不过分.
PHP的数组,关联数组,对象属性,函数表,符号表,等等都是用HashTable来做为容器的.
PHP的HashTable采用的拉链法来解决冲突, 这个自不用多说, 我今天主要关注的就是PHP的Hash算法, 和这个算法本身透露出来的一些思想.
PHP的Hash采用的是目前最为普遍的DJBX33A (Daniel J. Bernstein, Times 33 with Addition), 这个算法被广泛运用与多个软件项目,Apache, Perl和Berkeley DB等. 对于字符串而言这是目前所知道的最好的哈希算法,原因在于该算法的速度非常快,而且分类非常好(冲突小,分布均匀).
算法的核心思想就是:
1.         hash(i) = hash(i-1) * 33 + str[i]
在zend_hash.h中,我们可以找到在PHP中的这个算法:
1.    static inline ulong zend_inline_hash_func(char *arKey, uint nKeyLength)
2.    {
3.        register ulong hash = 5381;
4.   
5.        /* variant with the hash unrolled eight times */
6.        for (; nKeyLength >= 8; nKeyLength -=   {
7.            hash = ((hash 8.            hash = ((hash 9.            hash = ((hash 10.           hash = ((hash 11.           hash = ((hash 12.           hash = ((hash 13.           hash = ((hash 14.           hash = ((hash 15.       }
16.       switch (nKeyLength) {
17.           case 7: hash = ((hash 18.           case 6: hash = ((hash 19.           case 5: hash = ((hash 20.           case 4: hash = ((hash 21.           case 3: hash = ((hash 22.           case 2: hash = ((hash 23.           case 1: hash = ((hash 24.           case 0: break;
25.   EMPTY_SWITCH_DEFAULT_CASE()
26.       }
27.       return hash;
28.   }
相比在Apache和Perl中直接采用的经典Times 33算法:
1.    hashing function used in Perl 5.005:
2.      # Return the hashed value of a string: $hash = perlhash("key")
3.      # (Defined by the PERL_HASH macro in hv.h)
4.      sub perlhash
5.      {
6.          $hash = 0;
7.          foreach (split //, shift) {
8.              $hash = $hash*33 + ord($_);
9.          }
10.         return $hash;
11.     }
在PHP的hash算法中, 我们可以看出很处细致的不同.
首先, 最不一样的就是, PHP中并没有使用直接乘33, 而是采用了:
1.      hash 这样当然会比用乘快了.
然后, 特别要主意的就是使用的unrolled, 我前几天看过一片文章讲Discuz的缓存机制, 其中就有一条说是Discuz会根据帖子的热度不同采用不同的缓存策略, 根据用户习惯,而只缓存帖子的第一页(因为很少有人会翻帖子).
于此类似的思想, PHP鼓励8位一下的字符索引, 他以8为单位使用unrolled来提高效率, 这不得不说也是个很细节的,很细致的地方.
另外还有inline, register变量 … 可以看出PHP的开发者在hash的优化上也是煞费苦心
最后就是, hash的初始值设置成了5381, 相比在Apache中的times算法和Perl中的Hash算法(都采用初始hash为0), 为什么选5381呢? 具体的原因我也不知道, 但是我发现了5381的一些特性:
1.    Magic Constant 5381:
2.      1. odd number
3.      2. prime number
4.      3. deficient number
5.      4. 001/010/100/000/101
看了这些, 我有理由相信这个初始值的选定能提供更好的分类.
至于说, 为什么是Times 33而不是Times 其他数字, 在PHP Hash算法的注释中也有一些说明, 希望对有兴趣的同学有用:
1.      DJBX33A (Daniel J. Bernstein, Times 33 with Addition)
2.   
3.      This is Daniel J. Bernstein's popular `times 33' hash function as
4.      posted by him years ago on comp.lang.c. It basically uses a function
5.      like ``hash(i) = hash(i-1) * 33 + str[i]''. This is one of the best
6.      known hash functions for strings. Because it is both computed very
7.      fast and distributes very well.
8.   
9.      The magic of number 33, i.e. why it works better than many other
10.     constants, prime or not, has never been adequately explained by
11.     anyone. So I try an explanation: if one experimentally tests all
12.     multipliers between 1 and 256 (as RSE did now) one detects that even
13.     numbers are not useable at all. The remaining 128 odd numbers
14.     (except for the number 1) work more or less all equally well. They
15.     all distribute in an acceptable way and this way fill a hash table
16.     with an average percent of approx. 86%.
17.  
18.     If one compares the Chi^2 values of the variants, the number 33 not
19.     even has the best value. But the number 33 and a few other equally
20.     good numbers like 17, 31, 63, 127 and 129 have nevertheless a great
21.     advantage to the remaining numbers in the large set of possible
22.     multipliers: their multiply operation can be replaced by a faster
23.     operation based on just one shift plus either a single addition
24.     or subtraction operation. And because a hash function has to both
25.     distribute good _and_ has to be very fast to compute, those few
26.     numbers should be preferred and seems to be the reason why Daniel J.
27.     Bernstein also preferred it.
28.  
29.     www.2cto.com        -- Ralf S. Engelschall
 
•     作者: Laruence
•     本文地址: http://www.laruence.com/2009/07/23/994.html

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478471.htmlTechArticleHash Table是PHP的核心,这话一点都不过分. PHP的数组,关联数组,对象属性,函数表,符号表,等等都是用HashTable来做为容器的. PHP的HashTable采用的拉链...
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

핫 AI 도구

Undresser.AI Undress

Undresser.AI Undress

사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover

AI Clothes Remover

사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool

Undress AI Tool

무료로 이미지를 벗다

Clothoff.io

Clothoff.io

AI 옷 제거제

AI Hentai Generator

AI Hentai Generator

AI Hentai를 무료로 생성하십시오.

인기 기사

R.E.P.O. 에너지 결정과 그들이하는 일 (노란색 크리스탈)
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 최고의 그래픽 설정
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. 아무도들을 수없는 경우 오디오를 수정하는 방법
3 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌
WWE 2K25 : Myrise에서 모든 것을 잠금 해제하는 방법
4 몇 주 전 By 尊渡假赌尊渡假赌尊渡假赌

뜨거운 도구

메모장++7.3.1

메모장++7.3.1

사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전

SublimeText3 중국어 버전

중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기

스튜디오 13.0.1 보내기

강력한 PHP 통합 개발 환경

드림위버 CS6

드림위버 CS6

시각적 웹 개발 도구

SublimeText3 Mac 버전

SublimeText3 Mac 버전

신 수준의 코드 편집 소프트웨어(SublimeText3)

Ubuntu 및 Debian용 PHP 8.4 설치 및 업그레이드 가이드 Ubuntu 및 Debian용 PHP 8.4 설치 및 업그레이드 가이드 Dec 24, 2024 pm 04:42 PM

PHP 8.4는 상당한 양의 기능 중단 및 제거를 통해 몇 가지 새로운 기능, 보안 개선 및 성능 개선을 제공합니다. 이 가이드에서는 Ubuntu, Debian 또는 해당 파생 제품에서 PHP 8.4를 설치하거나 PHP 8.4로 업그레이드하는 방법을 설명합니다.

CakePHP 날짜 및 시간 CakePHP 날짜 및 시간 Sep 10, 2024 pm 05:27 PM

cakephp4에서 날짜와 시간을 다루기 위해 사용 가능한 FrozenTime 클래스를 활용하겠습니다.

CakePHP 토론 CakePHP 토론 Sep 10, 2024 pm 05:28 PM

CakePHP는 PHP용 오픈 소스 프레임워크입니다. 이는 애플리케이션을 훨씬 쉽게 개발, 배포 및 유지 관리할 수 있도록 하기 위한 것입니다. CakePHP는 강력하고 이해하기 쉬운 MVC와 유사한 아키텍처를 기반으로 합니다. 모델, 뷰 및 컨트롤러 gu

CakePHP 파일 업로드 CakePHP 파일 업로드 Sep 10, 2024 pm 05:27 PM

파일 업로드 작업을 위해 양식 도우미를 사용할 것입니다. 다음은 파일 업로드의 예입니다.

CakePHP 유효성 검사기 만들기 CakePHP 유효성 검사기 만들기 Sep 10, 2024 pm 05:26 PM

컨트롤러에 다음 두 줄을 추가하면 유효성 검사기를 만들 수 있습니다.

PHP 개발을 위해 Visual Studio Code(VS Code)를 설정하는 방법 PHP 개발을 위해 Visual Studio Code(VS Code)를 설정하는 방법 Dec 20, 2024 am 11:31 AM

VS Code라고도 알려진 Visual Studio Code는 모든 주요 운영 체제에서 사용할 수 있는 무료 소스 코드 편집기 또는 통합 개발 환경(IDE)입니다. 다양한 프로그래밍 언어에 대한 대규모 확장 모음을 통해 VS Code는

CakePHP 빠른 가이드 CakePHP 빠른 가이드 Sep 10, 2024 pm 05:27 PM

CakePHP는 오픈 소스 MVC 프레임워크입니다. 이를 통해 애플리케이션 개발, 배포 및 유지 관리가 훨씬 쉬워집니다. CakePHP에는 가장 일반적인 작업의 과부하를 줄이기 위한 여러 라이브러리가 있습니다.

PHP에서 HTML/XML을 어떻게 구문 분석하고 처리합니까? PHP에서 HTML/XML을 어떻게 구문 분석하고 처리합니까? Feb 07, 2025 am 11:57 AM

이 튜토리얼은 PHP를 사용하여 XML 문서를 효율적으로 처리하는 방법을 보여줍니다. XML (Extensible Markup Language)은 인간의 가독성과 기계 구문 분석을 위해 설계된 다목적 텍스트 기반 마크 업 언어입니다. 일반적으로 데이터 저장 AN에 사용됩니다

See all articles