Starting from:
$30

$24

Homework 5 and Homework 6 ( Project ) Solution

Evaluating Numeric Expressions Using Stack




Total 100 points




Turn in: On EWU Canvas, CSCD300 AssignmentsHw56Submit.

Please put all your source code (.java) files and output files together into a zip file. Name the zip file with your last name followed by first initial plus hw56.zip. For example, smithjhw56.zip is for John Smith.




If you forget to include your source code in the zip file, you get a zero credit for this homework. If your code shows a compile-time error, you get a zero credit. If you turned in a corrupted file, or a file that cannot be opened, you get a zero.




Problems Description

Based on the materials we discussed in classroom, you are required to implement the pseudo code regarding converting infix expression into postfix expression, then evaluating the postfix expression to produce a single result. Based on the demonstration I did in classroom, you will solve two problems, the first one (hw5) is required, while the second one (hw6) is optional but considered as bonus.

Problem 1) (hw5)

Read in the value of the symbols from input file hw5_input2.txt, and represent each symbol with a double precision value (Java double type).
Read in infix expressions from hw5_input3.txt. These infix expressions use the symbols defined in hw5_input2.txt. Please do not change either of the input files.
Convert each infix expression from step (b) into postfix expression.
Evaluate each postfix expression in step (c) using the value of symbols in hw5_input2.txt to yield a single result of double type, if the original infix expression has a correct syntax and in correct format. Otherwise, your program has to show an error message. The error message is thrown by your program based on the evaluation result for the current expression, which is shown below at the end of this section. You cannot hardcode your error message!
Output the results for each expression in step (c) and step (d) into a file, named hw5_output.txt. The format and part of the output file hw5_output.txt are shown below. Format is “original infix expression - - corresponding postfix expression - - evaluated postfix in double type”.
(((A + B) - (C - D)) / (E - F)) -- A B + C D - - E F - / -- -2.0

(((A))) -- A -- 8.0

(A) -- A -- 8.0

((A -- Parens Not Match Error!

(B -- Parens Not Match Error!

…………………

(( ))-- Empty infix expression Error!

………………

A*B - C ^ C ^ D -- A B * C C D ^ ^ - -- -9.000810786714514

A B - C ^ C ^ D -- Infix Syntax Error!

……………..

(( A - B * C) ^ D ^ E) ^ ( F / G * H + I ) -- A B C * - D E ^ ^ F G / H * I + ^ -- 0.0

………………

A * ( B / C) + D ^ A - B -- A B C / * D A ^ + B - -- 65535.857142857145









Problem 2) (hw6) ( Extra Credits as Bonus 20 points)

Based on the startup GUI program and demonstration in class, you have to design and implement a calculator with a GUI interface in Java,

The calculator supports operators +, -, *, /, ^(exponential), and any combinations of parentheses.
Your calculator has to support fractional number input, i.e. provides a decimal point on the panel.
Your calculator has to correctly evaluate any infix expressions, producing a result in double type or an output of error message if the expression contains error.



Hint: please carefully design your solution to problem 1, so that you can reuse the code in solution one.




Some test cases are provided below,


























































This infix expression is (), left parens and right parens, not 0.

More products