Implement Postfix Evaluator. Go to evaluator.PostfixEvaluator.java and you will see TODO comments. Before starting, thoroughly review the lecture slides to make sure you understand how to use a stack to evaluate postfix expressions. The loop over all tokens is in the evaluate method, which ...