what is benefits for changing from infix to postfix?
I read book today. It introduced algorithm about chaning from infix to postfix.. What is benefits? Thanks in advance. Well for one, you can easily evaluate a postfix expression in a single scan from left to right with the help of a stack, unlike evaluating infix expressions. and second, there is no need of the concept of parentheses and precedence rules etc. in a postfix expression. I think infix is really easy to understand for human. Postfix is the good way for machine to process. Please prefer: http://www.cs.man.ac.uk/~pjj/cs2121/fix.html An advanced example that also illustrates the