Create a Translator object that contains a postfix
expression and that provides a method named translate
that returns an equivalent infix expression as a String.
As a rough draft of this method, you can just do an inorder
traversal, but then you will have to figure out when it is
necessary to insert parentheses to preserve the value of the
expression.