-
Notifications
You must be signed in to change notification settings - Fork 0
/
prog2.c
133 lines (118 loc) · 2.34 KB
/
prog2.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#define STACKSIZE 100
struct stack
{
char items[STACKSIZE] ;
int top ;
};
typedef struct stack STACK;
void push(STACK *s, char x)
{
if(s->top == (STACKSIZE-1))
{
printf("Stack Overflow\n");
exit(0);
}
s->items[++s->top] = x;
}
char pop(STACK *s)
{
if(s->top == -1)
{
printf("Stack Underflow!\n");
exit(0);
}
return s->items[s->top--];
}
char stackTop(STACK *s)
{
if(s->top == -1)
{
printf("Underflow");
exit(0);
}
return (s->items[s->top]);
}
void display(STACK *s)
{
for(int i=0; i<=s->top; i++){
printf("%d\n", s->items[i]);
}
}
int preced(char symbol){
switch(symbol){
case '^': return 5;
case '*':
case '/': return 3;
case '+':
case '-': return 1;
}
}
void infix_to_postfix(char infix[30], STACK *s)
{
char postfix[30], symbol, temp;
int i, j;
j = 0;
for(i=0; infix[i]!='\0';i++)
{
symbol = infix[i];
if(isalnum(symbol))
{
postfix[j++] = symbol;
}
else
{
switch(symbol)
{
case '(':
push(s, symbol);
break;
// display(s);
case ')':
temp = pop(s);
while(temp!='('){
postfix[j++] = temp;
temp = pop(s);
}
break;
case '+':
case '-':
case '*':
case '/':
case '^':
if(s->top == -1 || s->items[s->top] == '('){
push(s, symbol);
// display(s);
break;
}
else{
while(preced(s->items[s->top]) >= preced(symbol) && s->top != -1 && s->items[s->top] != '(')
{
postfix[j++] = pop(s);
}
push(s, symbol);
break;
// display(s);
}
}
}
}
while(s->top != -1){
postfix[j++] = pop(s);
}
postfix[j] = '\0';
printf("Postfix expression is: %s\n", postfix);
}
int main()
{
char infix[20];
STACK s;
s.top = -1;
printf("Enter infix expression\n");
scanf("%s", infix);
infix_to_postfix(infix, &s);
return 0;
}