-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfixtopostfix.c
62 lines (58 loc) · 1.08 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
#include <stdio.h>
#include <ctype.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 presedence(char a)
{
if (a == '(')
return 0;
if (a == '+' || a == '-')
return 1;
if (a == '*' || a == '/')
return 2;
return 0;
}
int main()
{
char express[100], x;
printf("Enter an Expression: ");
scanf("%s", express);
printf("\n");
int i = 0;
while (express[i] != '\0')
{
if (isalnum(express[i]))
printf("%c ", express[i]);
else if (express[i] == '(')
push(express[i]);
else if (express[i] == ')')
{
while ((x = pop()) != '(')
printf("%c ", x);
}
else
{
while (presedence(stack[top]) >= presedence(express[i]))
printf("%c ", pop());
push(express[i]);
}
i++;
}
while (top != -1)
{
printf("%c ", pop());
}
printf("\n");
return 0;
}