-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprefix evaluation.cpp
73 lines (64 loc) · 1.24 KB
/
prefix evaluation.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include <iostream>
#include<math.h>
#include<string.h>
using namespace std;
#define MAX 20
char prefix[MAX];
int top=-1;
int Stack[MAX];
int push(int n)
{
if (!(top==MAX-1)) //Not Full condition
{
top++;
Stack[top]=n;
}
}
int pop()
{
int n;
if (!(top==-1)) //Not empty condition
{
n=Stack[top];
top--;
return n;
}
}
int main ()
{
int i,a,b,result,Eval;
char ch;
cout<<"Enter prefix expression: ";
cin>>prefix;
strrev(prefix);
for (i=0;prefix[i]!='\0';i++)
{
ch=prefix[i];
if (isdigit(ch))
push(ch-'0');
else if (ch=='+' || ch=='-' || ch=='*' || ch=='/')
{
b=pop();
a=pop();
switch(ch)
{
case '+':
result=a+b;
break;
case '-':
result=a-b;
break;
case '*':
result=a*b;
break;
case '/':
result=a/b;
break;
}
push(result);
}
}
Eval=pop();
cout<<"Result= "<<Eval<<endl;
return 0;
}