Reverse Polish Notation
Reverse Polish Notation (RPN) is an unambiguous, parenthesis-free notation for arithmetic expressions. Operands precede the operators that apply to them:
A + (B * C) --> A B C * + (A + B) * C --> A B + C *
It is easy to produce RPN as output of an operator precedence parser:
Contents    Page-10    Prev    Next    Page+10    Index