溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php中哈希表指的是什么

發(fā)布時(shí)間:2021-04-30 13:49:27 來源:億速云 閱讀:94 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關(guān)php中哈希表指的是什么的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

php有什么特點(diǎn)

1、執(zhí)行速度快。2、具有很好的開放性和可擴(kuò)展性。3、PHP支持多種主流與非主流的數(shù)據(jù)庫。4、面向?qū)ο缶幊蹋篜HP提供了類和對象。5、版本更新速度快。6、具有豐富的功能。7、可伸縮性。8、功能全面,包括圖形處理、編碼與解碼、壓縮文件處理、xml解析等。

本文操作系統(tǒng):windows7系統(tǒng)、PHP5.6版本、DELL G3電腦。

1.概念

哈希表是一種通過哈希函數(shù),將特定的鍵映射到特定值的一種數(shù)據(jù)結(jié)構(gòu),它維護(hù)鍵和值之間一一對應(yīng)關(guān)系。

2.說明

(1)哈希表是一種數(shù)據(jù)結(jié)構(gòu)

(2)哈希表表示了關(guān)鍵碼值和記錄的映射關(guān)系

(3)哈希表可以加快查找速度

(4)任意哈希表,都滿足有哈希函數(shù)f(key),代入任意key值都可以獲取包含該key值的記錄在表中的地址

3.實(shí)例

<?php
 
class HashTable
{
private $buckets;   //用于存儲(chǔ)數(shù)據(jù)的數(shù)組
private $size = 12;   //記錄buckets 數(shù)組的大小
public function __construct(){
$this->buckets = new SplFixedArray($this->size);
//SplFixedArray效率更高,也可以用一般的數(shù)組來代替
}
 
    private function hashfunc($key){
$strlen = strlen($key); //返回字符串的長度
$hashval = 0;  
for($i = 0; $i<$strlen ; $i++){
$hashval +=ord($key[$i]); //返回ASCII的值
}
return $hashval%12;    //    返回取余數(shù)后的值
}
public function insert($key,$value){
$index = $this->hashfunc($key);
if(isset($this->buckets[$index])){
$newNode = new HashNode($key,$value,$this->buckets[$index]);
}else{
$newNode = new HashNode($key,$value,null);
}
$this->buckets[$index] = $newNode;
}
public function find($key){
$index = $this->hashfunc($key);
$current = $this->buckets[$index];
echo "</br>";
var_dump($current);
while(isset($current)){    //遍歷當(dāng)前鏈表
if($current->key==$key){    //比較當(dāng)前結(jié)點(diǎn)關(guān)鍵字
return $current->value;
}
$current = $current->nextNode;
//return $current->value;
}
return NULL;
}
}
 class HashNode{
public $key;  //關(guān)鍵字
public $value;  //數(shù)據(jù)
public $nextNode; //HASHNODE來存儲(chǔ)信息
public function __construct($key,$value,$nextNode = NULL){
$this->key = $key;
$this->value = $value;
$this->nextNode = $nextNode;
}
}
  $ht = new HashTable();
  $ht->insert('Bucket1','value1');
  $ht->insert('Bucket2','value2');
  $ht->insert('Bucket3','value3');
  echo $ht->find('Bucket1');
?>

感謝各位的閱讀!關(guān)于“php中哈希表指的是什么”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI