Explain how a stack could be used in the process of evaluating an expression in Reverse Polish notation.

Starting at the left hand side of the expression push values onto stack. Each time operator reached in the expression pop the top two values off the stack and apply the operator to them, then push the new value back onto the stack. When the end of the expression is reached the final value on the stack is the final result.

EF

Related Computing A Level answers

All answers ▸

Simplify the boolean expression ¬(A.B)+A.


Why would you use Assembly Language instead of a normal programming language?


What are firewalls? Explain and discuss three methods they employ to secure a network. [8]


What is the difference between a dynamic and a static data structure?