-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPOSTFIX.c
88 lines (83 loc) · 1.33 KB
/
POSTFIX.c
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#include<stdio.h>
#include<ctype.h>
#include<conio.h>
#define MaxSize 20
int stack[MaxSize], top = -1;
int isEmpty()
{
if(top == -1)
return 1;
return 0;
}
void push(int x)
{
if(top == MaxSize - 1)
{
printf("Stack Overflow\n");
}
else
{
stack[++top] = x;
}
}
int pop()
{
if(isEmpty())
return -1;
return stack[top--];
}
void evaluatePostfix(char *e)
{
float result, n1, n2, num;
while(*e != NULL)
{
if(isalpha(*e))
{
printf("Enter the value for %c : ", *e);
scanf(" %c", e);
num = *e - 48;
push(num);
}
else if(isdigit(*e))
{
num = *e - 48;
push(num);
}
else
{
n1 = pop();
if(isEmpty())
{
printf("Invalid Postfix expression\n");
return;
}
n2 = pop();
switch(*e)
{
case '+' : result = n2 + n1; break;
case '-' : result = n2 - n1; break;
case '*' : result = n2 * n1; break;
case '/' : result = (float)n2 / n1; break;
deafult : printf("Invalid postfix expression\n"); return;
}
push(result);
}
e++;
}
if(top > 0)
{
printf("Invalid postfix Expression\n");
return;
}
printf("Result = %d\n", stack[top]);
}
void main()
{
char exp[20], *e;
printf("Enter the postfix expression : ");
scanf("%s", exp);
e = exp;
evaluatePostfix(e);
getch();
clrscr();
}