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 ‘infix’
Infix To Postfix conversion in python
Posted in Python, Scripts, tagged conversion, infix, postfix, Python, stack on September 22, 2009 | 10 Comments »



