在 PHP 中,可以使用关联数组(associative arrays)作为哈希表来实现高效的哈希查找
$hashTable = array(
"apple" => "fruit",
"carrot" => "vegetable",
"salmon" => "fish"
);
$key = "banana";
$value = "fruit";
$hashTable[$key] = $value;
$key = "apple";
if (isset($hashTable[$key])) {
echo "Found: " . $hashTable[$key]; // 输出 "Found: fruit"
} else {
echo "Not found";
}
$key = "apple";
unset($hashTable[$key]);
foreach ($hashTable as $key => $value) {
echo $key . ": " . $value . "\n";
}
通过这些基本操作,你可以在 PHP 中实现高效的哈希查找。需要注意的是,PHP 的关联数组实际上是通过哈希表实现的,因此查找、添加和删除操作的时间复杂度都是 O(1)。但在实际应用中,性能可能会受到哈希冲突的影响。为了保持较高的性能,请确保键的分布尽量均匀。