We normally write arithmetical expressions using infix notation, meaning that th
ID: 3672454 • Letter: W
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<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().
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.
File must be called: postfixEval.cpp
Explanation / Answer
#include <stdio.h>
#include <iostream>
#include <stdlib.h>
#include <stack>
#include <string.h>
using namespace std;
bool isOperator(char cc) //Checks if it is a valid operator
{
if (cc=='+' || cc=='-' || cc=='*' || cc=='/')
return true;
else
return false;
}
double operate(double op1, double op2, char op)//Operates operation on two operands
{
double answer;
switch(op){
case '+':
answer = op2 + op1;
break;
case '-':
answer = op2 - op1;
break;
case '*':
answer = op2 * op1;
break;
case '/':
answer = op2 / op1;
break;
}
return answer;
}
double main()
{
char expression[1000], buffer[15];
int i, len, j, x;
double op1, op2;
stack<int> s;
printf("Enter the Expression ");
gets(expression);
len = strlen(expression);
j = 0;
for(i=0; i<len;i++){
if(expression[i]>='0' && expression[i]<='9'){
buffer[j++] = expression[i];
}
else if(expression[i]==' '){
if(j>0){
buffer[j] = '';
x = atoi(buffer);
s.push(x);
j = 0;
}
}
else if(isOperator(expression[i])){
op1 = s.top();
s.pop();
op2 = s.top();
s.pop();
s.push(operate(op1, op2, expression[i]));
}
}
return s.top();
}
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.