Question: ----java---- Provide a method with signature public int calculation(String s) which will take a postfix expression as an input and return the calculation result of
----java----
Provide a method with signature public int calculation(String s) which will take a postfix expression as an input and return the calculation result of this expression. (Assume the expression only have +,-,*,/ and parentheses)
Provide a method with signature public String InToPostFix (String s) which will accept a infix expression as a string and convert it into a post fix expression and returned the postfix expression as a string (Assume the expression only have +,-,*,/ and parentheses) . ( Check the pusduo code on the slides.)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
