I've written an application that converts a string into a mathematical expression for evaluation. This is done by converting the string into postfix
and then by constructing an expression tree and solving it.
Now I want to know though, what is the most efficient way to do conversion into postfix?
Sample expression -
(2+(3*4+(4/(3*(4+6))))) or (3+4) or 3+4