what notation is RPN
postfix
give two advantages of RPN
give an example of the difference between postfix and infix
describe the reverse polish pseudocode
convert the following infix to postfix
3 + 11
311+
convert the following infix to postfix
3 / (5+y*x)
35yx*+/
how would the infix expression 3 + 4 * 2 - 1 be represented in RPN
34+2*1-