-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathinfix_to_postfix.c
56 lines (56 loc) · 995 Bytes
/
infix_to_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
#include<stdio.h>
#include<stdlib.h>
#include<ctype.h>
char stack[20];
int top = -1;
void push(char x)
{
stack[++top] = x;
}
char pop()
{
return stack[top--];
}
int priority(char x)
{
if(x == '(')
return 0;
if(x == '+' || x == '-')
return 1;
if(x == '*' || x == '/')
return 2;
if(x == '^')
return 3;
}
void main()
{
char exp[20];
char x;
int e;
printf("Enter the expression :: ");
scanf("%s",exp);
e = 0;
while(exp[e] != '\0')
{
if(isalnum(exp[e]))
printf("%c",exp[e]);
else if(exp[e] == '(')
push(exp[e]);
else if(exp[e] == ')')
{
while((x = pop()) != '(')
printf("%c", x);
}
else
{
while(priority(stack[top]) >= priority(exp[e]))
printf("%c",pop());
push(exp[e]);
}
e++;
}
while(top != -1)
{
printf("%c",pop());
}
}