-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfixPrefixPostfix.cpp
146 lines (136 loc) · 2.74 KB
/
InfixPrefixPostfix.cpp
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
Infix :- Operator is in between Oprands.
example :- a + b
<Oprand> <Operator> <Oprand>
Prefix :- Operator comes before Oprands.
example :- + a b
<Oprand> <Operator> <Oprand>
Postfix :- Operator comes after Oprands.
example :- a b +
<Oprand> <Operator> <Oprand>
*/
#include <iostream>
#include <string.h>
using namespace std;
class stack
{
public:
int top;
int size;
char *arr;
};
int isEmpty(class stack *sp)
{
if (sp->top == -1)
{
return 1;
}
else
{
return 0;
}
}
int isFull(class stack *sp)
{
if (sp->top == sp->size - 1)
{
return 1;
}
else
{
return 0;
}
}
void push(class stack *sp, char element)
{
if (isFull(sp))
{
cout<<"Stack OverFlow"<<endl;
}
else
{
sp->top++;
sp->arr[sp->top] = element;
}
}
char pop(class stack* sp)
{
if (isEmpty(sp))
{
cout << "Stack UnderFlow" << endl;
return -1;
}
else
{
char popped_element = sp->arr[sp->top];
sp->top--;
return popped_element;
}
}
char stack_top(class stack* sp)
{
return sp->arr[sp->top];
}
int precedence(char ch)
{
if (ch == '*' || ch == '/')
return 3;
else if (ch == '+' || ch == '-')
return 2;
else
return 0;
}
int isOperator(char ch)
{
if (ch == '+' || ch == '-' || ch == '*' || ch == '/')
return 1;
else
return 0;
}
const char *infix_to_postfix(const char *expression)
{
class stack *sp = (class stack *)malloc(sizeof(class stack));
sp->top = -1;
sp->size = 10;
sp->arr = (char *)malloc(sp->size * sizeof(char));
char *pos = (char *)malloc((strlen(expression) + 1) * sizeof(char));
int i = 0;
int j = 0;
while (expression[i] != '\0')
{
if (!isOperator(expression[i]))
{
pos[j] = expression[i];
j++;
i++;
}
else
{
if (precedence(expression[i]) > precedence(stack_top(sp)))
{
push(sp, expression[i]);
i++;
}
else
{
pos[j] = pop(sp);
j++;
}
}
}
while (!isEmpty(sp))
{
pos[j] = pop(sp);
j++;
}
pos[j] = '\0';
return pos;
}
int main()
{
const char *expression = "x-y/z-k*d";
const char *postfix = infix_to_postfix(expression);
cout << "Infix : " << expression << endl;
cout << "Postfix : " << postfix << endl;
return 0;
}