public String toString()
which returns the contents of the BST in postorder as a printable string. You should write this method recursively, calling upon a private helper method:
private String toString(BSTnode N)
to get the job done. You may assume that each BSTnode object contains a toString method that can be called upon to give you the node's data as a string. You may also assume that BinarySearchTree contains a single private instance variable:
private BSTnode root;
You may actually want to write this method in Eclipse to make sure you get it right.
Order of insertions: 26, 15, 48, 30, 35, 28, 20, 1, 27