-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfix_Postfix.c
59 lines (54 loc) · 1.14 KB
/
Infix_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
#include<stdio.h>
#include<conio.h>
void push(char ch);
char pop();
int priority(char ch);
char stack[100];
int top = -1;
int main() {
char exp[100], *e, ch;
//clrscr();
printf("\nEnter the expression : ");
scanf("%s", exp);
e = exp;
while(*e != '\0') {
if(isalnum(*e))
printf("%c ", *e);
else if(*e == '(')
push(*e);
else if(*e == ')') {
while((ch = pop()) != '(')
printf("%c ", ch);
}
else if(*e == ' ')
e++;
else {
while(priority(stack[top]) >= priority(*e))
printf("%c ", pop());
push(*e);
}
e++;
}
while(top != -1)
printf("%c ", pop());
getch();
return 0;
}
void push(char ch) {
stack[++top] = ch;
}
char pop() {
if(top == -1)
return -1;
else
return stack[top--];
}
int priority(char ch) {
if(ch == '(')
return 0;
else if(ch == '+' || ch == '-')
return 1;
else if(ch == '*' || ch == '/')
return 2;
return 0;
}