Why is reverse polish notation useful
Removes the need for brackets
Allows for calculations using a stack
What fix is RPN
Postfix notation. Operator after the operands
If there is a binary tree what search to turn into RPN
Use a post order traversal
How is a stack used to evaluate an expression in RPN
If item is a operand push onto stack
If item is a operator pop the needed numbers, do the operation then push back onto the stack
Do the bottom operation top order.