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