Ejemplo n.º 1
0
 /**
  *
  * @param $item
  *
  * @return void
  */
 function remove($item)
 {
     $this->bst->remove($item);
 }
Ejemplo n.º 2
0
 /**
  * @param $key
  *
  * @return mixed
  */
 function remove($key)
 {
     $this->avl->remove(new Pair($key, null));
 }