Infix, Postfix and Prefix notations are three different but equivalent ways of writing expressions. It is easiest to demonstrate the differences by looking at examples of operators that take two operands.
Infix notation: X + Y
Postfix notation (also known as "Reverse Polish notation"): X Y +
Prefix notation (also known as "Polish notation"): + X Y
Examples
Converting between these notations
Infix to postfix
Code to convert infix to postfix:
Output:
Postfix Evaluator
Infix notation: X + Y
Operators are written in-between their operands. This is the usual way we write expressions. An expression such asA * ( B + C ) / D
is usually taken to mean something like: "First add B and C together, then multiply the result by A, then divide by D to give the final answer."
Infix notation needs extra information to make the order of evaluation of the operators clear: rules built into the language about operator precedence and associativity, and brackets ( ) to allow users to override these rules. For example, the usual rules for associativity say that we perform operations from left to right, so the multiplication by A is assumed to come before the division by D. Similarly, the usual rules for precedence say that we perform multiplication and division before we perform addition and subtraction
Postfix notation (also known as "Reverse Polish notation"): X Y +
Operators are written after their operands. The infix expression given above is equivalent toA B C + * D /
The order of evaluation of operators is always left-to-right, and brackets cannot be used to change this order. Because the "+" is to the left of the "*" in the example above, the addition must be performed before the multiplication.
Operators act on values immediately to the left of them. For example, the "+" above uses the "B" and "C". We can add (totally unnecessary) brackets to make this explicit:
( (A (B C +) *) D /)
Thus, the "*" uses the two values immediately preceding: "A", and the result of the addition. Similarly, the "/" uses the result of the multiplication and the "D".
Prefix notation (also known as "Polish notation"): + X Y
Operators are written before their operands. The expressions given above are equivalent to/ * A + B C D
As for Postfix, operators are evaluated left-to-right and brackets are superfluous. Operators act on the two nearest values on the right. I have again added (totally unnecessary) brackets to make this clear:
(/ (* A (+ B C) ) D)
Examples
Infix Postfix Prefix Notes A * B + C / D
A B * C D / +
+ * A B / C D
multiply A and B,
divide C by D,
add the results
A * (B + C) / D
A B C + * D /
/ * A + B C D
add B and C,
multiply by A,
divide by D
A * (B + C / D)
A B C D / + *
* A + B / C D
divide C by D,
add B,
multiply by A
Converting between these notations
The most straightforward method is to start by inserting all the implicit brackets that show the order of evaluation e.g.:
Infix Postfix Prefix ( (A * B) + (C / D) )
( (A B *) (C D /) +)
(+ (* A B) (/ C D) )
((A * (B + C) ) / D)
( (A (B C +) *) D /)
(/ (* A (+ B C) ) D)
(A * (B + (C / D) ) )
(A (B (C D /) +) *)
(* A (+ B (/ C D) ) )
You can convert directly between these bracketed forms simply by moving the operator within the brackets e.g. (X + Y) or (X Y +) or (+ X Y). Repeat this for all the operators in an expression, and finally remove any superfluous brackets.
Infix to postfix
Suppose we have expression:3 + 4 * 5 / 6
Element Stack Output 3 3 + + 3 4 + 34 * +* 34 5 +* 345 / +/ 345* 6 +/ 345*6 + 345*6/ 345*6/+
Code to convert infix to postfix:
Output:
Infix: (4+8)*(6-5)/((3-2)*(2+2))
Postfix: 48+65-*32-22+*/
Postfix Evaluator