This method returns the height of a BST.
BST
ht = aBST$height()
height returns -1 if the tree is empty. Otherwise, the returned value is the depth of the BST's deepest node.
height
John Hughes