Esempio n. 1
0
 /**
  * @return mixed
  */
 function lastKey()
 {
     return $this->avl->last()->first;
 }
Esempio n. 2
0
 /**
  * @return mixed
  * @throws EmptyException when the tree is empty
  */
 function last()
 {
     return $this->bst->last();
 }
Esempio n. 3
0
 /**
  * @return mixed
  * @throws EmptyException when the tree is empty
  */
 function last()
 {
     return $this->avl->last();
 }