特定のタイプ(Person)のオブジェクトを含むことができる配列ラッパークラスPersonArrayを作成しました。すべての人には、ID +Nameを一意の識別子として返す一意のgetHash()関数があります。これにより、PersonArrayからPersonを迅速に取得できます。PersonArrayは、実際には2つの内部配列を保持しています。1つはPersonオブジェクト($ items)のストレージ用で、もう1つはハッシュ値($ itemsHash)のストレージ用です。
$ items配列の[index]の位置にPersonオブジェクトを配置するinsertAt(index、Person)関数を作成したいと思います。配列の特定の位置に挿入する方法はありますか?もしそうなら、PersonArrayの$ itemsHashも更新するにはどうすればよいですか?
class Person {
function getHash() {
return $this->id . $this->name;
}
}
class PersonArray implements Iterator {
public $items = array();
public $itemsHash = array();
public function Find($pKey) {
if($this->ContainsKey($pKey)) {
return $this->Item($this->internalRegisteredHashList[$pKey]);
}
}
public function Add($object) {
if($object->getHash()) {
$this->internalRegisteredHashList[$object->getHash()] = $this->Count();
array_push($this->items, $object);
}
}
public function getItems() {
return $this->items;
}
function ContainsKey($pKey) {}
function Count() {}
function Item($pKey) {}
//Iteration implementation
public function rewind() {}
public function current() {}
public function key() {}
public function next() {}
public function valid() {}
}