Assume we wish to form a method for class BinaryTree which decides whether two trees have same structure. The header of the method could be as follows:
public boolean isIsomorphic(BinaryTreeInterface otherTree)
State this method, utilizing a private recursive method of the same name.