2*3+4 --> 23*4+The rule is that each operator follows its two operands. The algorithm to make this transition uses a stack.
2*3+4 --> ((2*3)+4) --> 23*4+
postfix expression 2 3 * 4 /
3 4
stack 2 2 6 6 1.5