-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinfix_postfix.cpp
More file actions
119 lines (118 loc) · 1.86 KB
/
infix_postfix.cpp
File metadata and controls
119 lines (118 loc) · 1.86 KB
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
#include<iostream>
#include<cstring>
using namespace std;
#define size 30
int G(char sy)
{
switch(sy)
{
case '+':
case '-':
return 1;
case '*':
case '/':
return 3;
case '^':
case '$':
return 6;
case '(':
return 9;
case ')':
return 0;
default :
return 7;
}
}
int F(char sy)
{
switch(sy)
{
case '+':
case '-':
return 2;
case '*':
case '/':
return 4;
case '^':
case '$':
return 5;
case '(':
return 0;
case '#':
return -1;
default :
return 8;
}
}
struct stack
{
int top;
char items[size];
};
int isFull(stack *s)
{
if(s->top==size)
return true;
else
return false;
}
int isEmpty(stack *s)
{
if(s->top<=-1)
return true;
else
return false;
}
void push(stack *s,char x)
{
if(!(isFull(s)))
{
s->top+=1;
s->items[s->top]=x;
}
}
char pop(stack *s)
{
if(!(isEmpty(s)))
{
char temp=s->items[s->top];
s->top--;
return temp;
}
else
return 'n';
}
void infix_postfix(char infix[size],char postfix[size])
{
stack s;
s.top=-1;
int i,j=0;
char sym,ch;
push(&s,'#');
for(i=0;i<strlen(infix);i++)
{
sym=infix[i];
while(F(s.items[s.top])>G(sym))
{
ch=pop(&s);
if(ch!='n')
postfix[j++]=ch;
}
if(F(s.items[s.top])!=G(sym))
push(&s,sym);
else
ch=pop(&s);
}
while(s.items[s.top]!='#')
postfix[j++]=pop(&s);
postfix[j]='\0';
}
int main()
{
char infix[size],postfix[size];
cout<<"Enter the INFIX expression (without spaces) : ";
cin>>infix;
infix_postfix(infix,postfix);
cout<<"\n\nPOSTFIX Expression : "<<postfix;
return 0;
}