We normally write arithmetical expressions using infix notation

QUESTION

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 (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().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.

 

ANSWER:

REQUEST HELP FROM A TUTOR

Expert paper writers are just a few clicks away

Place an order in 3 easy steps. Takes less than 5 mins.

Calculate the price of your order

You will get a personal manager and a discount.
We'll send you the first draft for approval by at
Total price:
$0.00