-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevalpost.c
77 lines (69 loc) · 1.8 KB
/
evalpost.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
//evaluate the postfix exp
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
struct Stack{
int top;
unsigned capacity;
int *array;
};
struct Stack* createStack(unsigned capacity){
struct Stack* stack =(struct Stack*) malloc(sizeof(struct Stack));
if(!stack)
return NULL;
stack->top=-1;
stack->capacity= capacity;
stack->array=(int*)malloc(stack->capacity * sizeof(int));
if(!stack->array)
return NULL;
return stack;
}
int isEmpty(struct Stack* stack){
return stack->top==-1;
}
char peek(struct Stack * stack ){
return stack->array[stack->top];
}
char pop(struct Stack * stack ){
if(!isEmpty(stack))
return stack->array[stack->top--];
return '$';
}
void push(struct Stack * stack,char ope){
stack->array[++stack->top]=ope;
}
int eval(char *exp){
struct Stack* stack = createStack(strlen(exp));
int i;
if(!stack)
return -1;
for(i=0;i<strlen(exp);++i){
if(isdigit(exp[i]))
push(stack, exp[i]-'0');
else{
int op1=pop(stack);
int op2= pop(stack);
switch(exp[i]){
case '+': push(stack,op2+op1);
break;
case '-' : push(stack,op2-op1);
break;
case '/' : push(stack,op2/op1);
break;
case '*' : push(stack,op2*op1);
break;
case '^' : push(stack,op2^op1);
break;
}
}
}
return pop(stack);
}
int main(){
char input[100];
printf("Enter the postfix expression: ");
gets(input);
printf("Solution : %d", eval(input));
return 0;
}