Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Specification Design, write and test a program that evaluates infix expressions of unsigned integers using two stacks. The main class will be P1GUI. It

1. Specification Design, write and test a program that evaluates infix expressions of unsigned integers using two stacks. The main class will be P1GUI. It should create a Swing based GUI that allows the user to input an infix expression and displays the result. The GUI must be generated by code that you write. You may not use a drag-and-drop GUI generator. The GUI should look as follows:

image text in transcribed

Another class, InfixEval, should contain the code to perform the infix expression evaluation. For infix expression evaluation, two stacks will be used: a stack of

operands and a stack of operators. The pseudocode for performing that evaluation is shown below: tokenize the string containing the expression while there are more tokens get the next token if it is an operand push it onto the operand stack else if it is a left parenthesis push it onto the operator stack else if it is a right parenthesis while top of the operator stack is not a left parenthesis pop two operands and an operator perform the calculation push the result onto the operand stack pop top of the operator stack and ignore it (i.e. it is a left parenthesis) else if it is an operator while the operator stack is not empty and the operator at the top of the stack has higher or the same precedence than the current operator pop two operands and perform the calculation push the result onto the operand stack push the current operator on the operators stack while the operator stack is not empty pop two operands and an operator perform the calculation push the result onto the operand stack the final result is at the top of the operand stack Be sure to add any additional methods needed to eliminate any duplication of code. Your program is only expected to perform correctly on syntactically correct infix expressions that contain integer operands and the four arithmetic operators + - * /. It should not, however, require spaces between tokens. The usual precedence rules apply. The division performed should be integer division. A check should be made for division by zero. Should the expression contain division by zero, a checked custom exception DivideByZero should be thrown by the method that performs the evaluation and caught in the main class, where a JOptionPane window should be displayed containing an error message. Your program should compile without errors. The Google recommended Java style guide (https://google.github.io/styleguide/javaguide.html) should be used to format and document your code. Specifically, the following style guide attributes should be addressed: header comments include filename, author, date and brief purpose of the program; in-line comments used to describe major functionality of the code; the meaning and the role of variables and constants are indicated as code comments; meaningful variable names and prompts applied; class names are written in UpperCamelCase; variable names are written in lowerCamelCase; constant names are in written in All Capitals; braces use K&R style. In addition, the following design constraints should be followed: declare all instance variables private; avoid the duplication of code

1nfix Expresson Evaluator Enter Infix Expression (2+3 5)-8/5 (5-2) Evaluate Result 14

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Design Implementation And Management

Authors: Peter Rob, Carlos Coronel

6th International Edition

061921323X, 978-0619213237

More Books

Students also viewed these Databases questions