Given two binary trees, return True if and
only if they are structurally identical (ignoring the content of
the nodes).
To be identical in structure, the left subtree of the first tree must match the left subtree of the second tree. And the right subtree of the first tree must match the right subtree of the second tree.