add a method to the linkedbinarytree class that returns the height of a tree. like many tree methods, this will require a fairly simple method in linkedbinarytree and another method in btnode that does most of the work. first, check to see if the root is null. if it is, then the tree is obviously empty and return 0. if it is not null, return root.height().