Question
Task: Write the program in C++ using Project File. Evaluate a postfix expression using a stack. See Problem #12, pg. 387, in the Nyhoff textbook.
Task: Write the program in C++ using Project File. Evaluate a postfix expression using a stack. See Problem #12, pg. 387, in the Nyhoff textbook.
Input: The user will provide a postfix expression consisting of single-digit whole numbers and single-char operators (+, -, *, and /). The input should be accepted as a string.
Processing: Use a linked list stack implementation for the program. Only numbers will be stored in the stack. When a digit is read from the input string, it will be pushed onto the stack. When an operator is read from the string, two numbers will be popped from the stack and the operator will be used to evaluate them; then the result will be pushed back onto the stack.
Assume that only valid postfix expressions will be entered, so extensive data validation is not needed. Calculations will be done on the numbers as integers. Permit the user to enter multiple expressions for evaluation.
Output: As specified by Problem #12, pg. 387.
Sample expressions:
infix: postfix: result:
(2 + 7) * (3 - 6) 2 7 + 3 6 - * -27
3 - 4 - 1 + (5 / 2) 3 4 - 1 - 5 2 / + 0
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started