About Infix and Postfix
In an expression if the operators are placed between the operands, it is known as infix notation ( eg A+B) . On the other hand if the operators are placed after the operands then the expression is in postfix notation .( eg AB+)
Infix Notation Postfix Notation
(A-C)*B [...]
Posts Tagged ‘conversion’
Infix To Postfix conversion in python
Posted in Uncategorized, tagged conversion, infix, postfix, Python, stack on September 22, 2009 | 3 Comments »

