Question: In this project, you will implement an expression tree to evaluate given binary arithmetic expressions. Your program must read expressions from a file containing a

In this project, you will implement an expression tree to evaluate given
binary arithmetic expressions. Your program must read expressions from a
file containing a single equation on each line. The equations are written as infix
expressions. For each line the program should print the value resulting from
evaluating the expression. Your program should support the following
operations: +-*/(). White spaces or special characters are ignored.
Example input:
3+5**(10-2)
1+1+1+1**8
1003?2
100**3
In this case, the output should contain the following:
43
11
16
1
You should use an array implementation of your Stack library that you will
use in this work.
Your application should be able to show the following information through
a proper menu of the application:
Read equations
Print equations
Evaluate using Expression tree
Print postfix expressions
Save to output file (postfix and results)
Exit
 In this project, you will implement an expression tree to evaluate

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!