Consider a method for a binary search tree that decides whether the tree is height balanced, as Segment 25.41 describes. The header of the method could be as follows:
public boolean isBalanced()
Write this method for the class BinarySearchTree. It should call a private recursive method of the same name.