-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfixtoPostfix.c
127 lines (122 loc) · 2.77 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
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
//1 stack and 2 arrays of characters
#include<stdlib.h>
#include<stdio.h>
#include<conio.h>
#include<string.h>
#include<ctype.h>
#define MAX 100
char stack[MAX]; // for operators and parenthesis
int TOP=-1;
void push(char stack[], char);
char pop(char stack[]);
void InfixtoPostfix(char source[],char target[]); //infix-source & postfix-destination
int getpriority(char);
int main()
{
char infix[100],postfix[100];
//clrscr();
printf("\nEnter any infix expression:\t");
gets(infix);
strcpy(postfix,""); //Initialize postfix with null to remove garbage values
InfixtoPostfix(infix,postfix);
printf("\nThe corresponding postfix expression is:\t");
puts(postfix);
getch();
return 0;
}
//INFIX expression can have three types of characters: operators(+,-,/,*,%) , ( , ) , operands(A,B..)
void InfixtoPostfix(char source[], char target[])
{
int i=0,j=0;
char temp;
strcpy(target,""); //initialize target with null to remove garbage values if any
while(source[i]!='\0')
{
//TYPE 1- ( open parenthesis
if(source[i]=='(')
{
push(stack,source[i]);
i++;
}
//TYPE 2- OPERANDS
else if(isalpha(source[i]) || isdigit(source[i]))
{
target[j]=source[i];
i++;
j++;
}
//TYPE 3- ) close parenthesis
else if(source[i]==')')
{
while((TOP!=-1)&&(stack[TOP]!='(')) //add operators to postfix till we get another (
{ //or stack becomes empty
target[j]=pop(stack);
j++;
}
if(TOP==-1) //means a close parenthesis ) without an open parenthesis (
{
printf("\nINCORRECT EXPRESSION");
exit(1);
}
temp=pop(stack); //Remove ) corresponding to the encountered (
i++;
}
else if(source[i]=='+' || source[i]=='-' || source[i]=='*' || source[i]=='/' || source[i]=='%')
{
while(TOP!=-1 && stack[TOP]!='(' && getpriority(stack[TOP])>getpriority(source[i]))
{
target[j]=pop(stack);
j++;
}
push(stack,source[i]); //After transfering higher priority(if any) operators from
i++; //stack to postfix, add the encountered operator to stack
}
else
{
printf("\nIncorrect element in expression.");
exit(1);
}
}
//Add remaining operators in stack to the postfix expression
while(TOP!=-1 && stack[TOP]!='(')
{
target[j]=pop(stack);
j++;
}
target[j]='\0';//End the postfix expression
}
//-----------------------------------------------------------------------------------------------
void push(char stack[], char c)
{
if(TOP==MAX-1)
{
printf("\nSTACK OVERFLOW");
}
else
{
TOP=TOP+1;
stack[TOP]=c;
}
}
char pop(char stack[])
{
char temp1;
if(TOP==-1)
{
printf("\nSTACK UNDERFLOW");
}
else
{
temp1=stack[TOP];
TOP=TOP-1;
return temp1;
}
}
int getpriority(char c)
{
int p;
if(c=='*' || c=='/' || c=='%')
return 1;
else
return 0;
}