-
Notifications
You must be signed in to change notification settings - Fork 0
/
InfixToPostfix.c
68 lines (64 loc) · 1.12 KB
/
InfixToPostfix.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
#include<stdio.h>
char stack[100];
int top = -1;
void push(char x)
{
stack[++top] = x;
}
char pop()
{
if(top == -1)
return -1;
else
return stack[top--];
}
int priority(char x)
{
if(x == '(')
return 0;
if(x == '+' || x == '-')
return 1;
if(x == '*' || x == '/')
return 2;
return 0;
}
int CheckAlp(char exp)
{
if( (exp>='A' && exp<='Z' )|| (exp>='a' && exp<='z' ))
{
return 1;
}
return 0;
}
int main()
{
char exp[100];
char x;
printf("Enter the expression : ");
scanf("%s",exp);
printf("\n");
int i =0;
while(exp[i] != '\0')
{
if(CheckAlp(exp[i]))
printf("%c ",exp[i]);
else if(exp[i] == '(')
push(exp[i]);
else if(exp[i] == ')')
{
while((x = pop()) != '(')
printf("%c ", x);
}
else
{
while(priority(stack[top]) >= priority(exp[i]))
printf("%c ",pop());
push(exp[i]);
}
i++;
}
while(top != -1)
{
printf("%c ",pop());
}return 0;
}