What are the 4 advantages of reverse Polish notation?
What data structure is required for reverse Polish notation?
A stack
How is reverse polish translated into in fix notation?
If it is a number append to stack.
If it is an operator pop the top two items from the stack, the top one goes on the right of the operator and the other on the left. Append result to the stack
Write 162/(2+1)^4 in RPN
162 2 1 + 4 ^ /
What is the result of: 6 3 - 2 ^ 11 -
(6-3)^2 -11=-2
What is the method for writing fixed expressions in Polish notation?
Find the operation that you would perform first according to bidmas write it down and then work outwards from there