Answered! We normally write arithmetical expressions using infix notation, meaning that the operator appears between its two…

We normally write arithmetical expressions using infix notation, meaning that the operator appears between its two operands, as in “4 + 5”. In postfix notation, the operator appears after its operands, as in “4.3 5.0 +”. Here is a slightly more complex postfix expression: “25 12 7 – 2 * /”. The equivalent infix expression is: “25 / ((12 – 7) * 2)”. The result of that expression should be 2.5 (beware integer division). Postfix expressions don’t require parentheses.

Write a function named postfixEval that uses a stack<double> (from the Standard Template Library) to evaluate postfix expressions. It should take a C-style string parameter that represents a postfix expression. The only symbols in the string will be +, -, *, /, digits and spaces. ‘+’ and ‘-‘ will only appear in the expression string as binary operators – not as unary operators that indicate the sign of a number. The return type should be double. You may find the isdigit() function useful in parsing the expression. You may also use strtok() and atof().

Don't use plagiarized sources. Get Your Custom Essay on
Answered! We normally write arithmetical expressions using infix notation, meaning that the operator appears between its two…
GET AN ESSAY WRITTEN FOR YOU FROM AS LOW AS $13/PAGE
Order Essay

Hint: Read a postfix expression from left to right. When you read a number, push it on the stack. When you read an operand, pop the top two numbers off the stack, apply the operator to them, and push the result on top of the stack. At the end, the result of the expression should be the only number on the stack.

Expert Answer

 Answered! We normally write arithmetical expressions using infix notation, meaning that the operator appears between its two... 1Answered! We normally write arithmetical expressions using infix notation, meaning that the operator appears between its two... 2Answered! We normally write arithmetical expressions using infix notation, meaning that the operator appears between its two... 3

Still stressed from student homework?
Get quality assistance from academic writers!