Question: Starting with the BinaryExpression learning activity solution from this week, write a new class PostfixVisitor that visits an expression tree and returns the expression in
Starting with the BinaryExpression learning activity solution from this week, write a new class PostfixVisitor that visits an expression tree and returns the expression in postfix notation, with each part of the expression separated by spaces. For example, if the tree represented the expression 3 + 5, then the postfix result would be "3 5 +" import java.util.*; public class PostfixVisitor implements Visitor { public PostfixVisitor() { } public String getResult() { return null; } @Override public void preVisit(BinaryExpression expr) { } @Override public void visit(BinaryExpression expr) { } @Override public void postVisit(BinaryExpression expr) { } @Override public void visit(ConstantExpression expr) { } }
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
