本文操作系统:windows7系统、PHP5.6版本、DELL G3电脑。
1.概念
哈希表是一种通过哈希函数,将特定的键映射到特定值的一种数据结构,它维护键和值之间一一对应关系。
2.说明
(1)哈希表是一种数据结构
(2)哈希表表示了关键码值和记录的映射关系
(3)哈希表可以加快查找速度
(4)任意哈希表,都满足有哈希函数f(key),代入任意key值都可以获取包含该key值的记录在表中的地址
3.实例
<?php classHashTable { private$buckets;//用于存储数据的数组 private$size=12;//记录buckets数组的大小 publicfunction__construct(){ $this->buckets=newSplFixedArray($this->size); //SplFixedArray效率更高,也可以用一般的数组来代替 } privatefunctionhashfunc($key){ $strlen=strlen($key);//返回字符串的长度 $hashval=0; for($i=0;$i<$strlen;$i++){ $hashval+=ord($key[$i]);//返回ASCII的值 } return$hashval%12;//返回取余数后的值 } publicfunctioninsert($key,$value){ $index=$this->hashfunc($key); if(isset($this->buckets[$index])){ $newNode=newHashNode($key,$value,$this->buckets[$index]); }else{ $newNode=newHashNode($key,$value,null); } $this->buckets[$index]=$newNode; } publicfunctionfind($key){ $index=$this->hashfunc($key); $current=$this->buckets[$index]; echo"</br>"; var_dump($current); while(isset($current)){//遍历当前链表 if($current->key==$key){//比较当前结点关键字 return$current->value; } $current=$current->nextNode; //return$current->value; } returnNULL; } } classHashNode{ public$key;//关键字 public$value;//数据 public$nextNode;//HASHNODE来存储信息 publicfunction__construct($key,$value,$nextNode=NULL){ $this->key=$key; $this->value=$value; $this->nextNode=$nextNode; } } $ht=newHashTable(); $ht->insert('Bucket1','value1'); $ht->insert('Bucket2','value2'); $ht->insert('Bucket3','value3'); echo$ht->find('Bucket1'); ?>原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容