Take out a piece of paper. We’ll be programming on paper.
public class BinaryTree<E> {
private BinaryNode<E> root;
private Comparator<E> c;
public String toString() {
// your code
}
}
Use a recursive helper method.
What is the base case?
How do we make the problem smaller?
What is an in-order traversal of a binary tree?