If I have a formula:
A = 2+3*5-6/3+2
How could I build up the formula as a tree with nodes, then I can easily calculate the result based on the tree from bottom-up, left to right.
Would someone please provide a sample of the required parser or some references?