[UVA][樹走訪] 372 - WhatFix Notation
There are three traversal methods commonly used in compilers and calculators:
prefix
infix
postfix
For example, a single expression can be written in each form
infix: a + b * c
prefix: + a * b c
postfix: a b c * +
Note tha...