发布网友 发布时间:2022-04-06 01:50
共2个回答
懂视网 时间:2022-04-06 06:11
php实现hashmap的方法:使用【construct()】构造函数实现,代码为【Class HashMap{var $H_table;public function __construct(){$this->H_table = a}】。
php实现hashmap的方法:
主要方法参照JAVA的HASHMAP实现的
Class HashMap{ var $H_table; public function __construct() { $this->H_table = array (); } public function put($key, $value) { if (!array_key_exists($key, $this->H_table)) { $this->H_table[$key] = $value; return null; } else { $tempValue = $this->H_table[$key]; $this->H_table[$key] = $value; return $tempValue; } } public function get($key) { if (array_key_exists($key, $this->H_table)) return $this->H_table[$key]; else return null; } public function remove($key) { $temp_table = array (); if (array_key_exists($key, $this->H_table)) { $tempValue = $this->H_table[$key]; while ($curValue = current($this->H_table)) { if (!(key($this->H_table) == $key)) $temp_table[key($this->H_table)] = $curValue; next($this->H_table); } $this->H_table = null; $this->H_table = $temp_table; return $tempValue; } else return null; } public function keys(){ return array_keys($this->H_table); } public function values(){ return array_values($this->H_table); } public function putAll($map){ if(!$map->isEmpty()&& $map->size()>0){ $keys = $map->keys(); foreach($keys as $key){ $this->put($key,$map->get($key)); } } } public function removeAll() { $this->H_table = null; $this->H_table = array (); } public function containsValue($value) { while ($curValue = current($this->H_table)) { if ($curValue == $value) { return true; } next($this->H_table); } return false; } public function containsKey($key) { if (array_key_exists($key, $this->H_table)) { return true; } else { return false; } } public function size() { return count($this->H_table); } public function isEmpty() { return (count($this->H_table) == 0); } public function toString() { print_r($this->H_table); } }
想了解更多编程学习,敬请关注php培训栏目!
热心网友 时间:2022-04-06 03:19
map就好比你去银行存贵重物品(value),把对象放进去,银行给你一个钥匙或者凭条(key)。存的过程就是set的过程set(key,value),取的过程就是get的过程,获得一个对象(贵重物品),这个对象是一个Object,用的时候需要转型成String或者别的类,例如(String)map.get("aa");。或者定义map的时候这么定义:HashMapmap=newHashMap(),这样取的时候map.get("aa")就能够直接取到一个String型。