コード例 #1
0
ファイル: AVLTree.php プロジェクト: EdenChan/Instances
 /**
  * Detaches the key from this node; making it the empty node.
  */
 public function detachKey()
 {
     $this->height = -1;
     return parent::detachKey();
 }