forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
infixevaluator.js
235 lines (205 loc) · 4.57 KB
/
infixevaluator.js
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
/*
Infix expression:- The expression of the form a op b.
When an operator is in-between every pair of operands.
Postfix expression:- An expression is called the postfix expression
if the operator appears in the expression after the operands.
This program is for evaluating infix expression.
In this first we have to convert the infix expression into postfix expression.
Then evaluate postfix expression using stack. Give an evaluated value.
*/
// creating stackarr
var stackarr=[];
// Initialize topp variable with -1
var topp=-1;
// creating evalstack
var evalstack=[];
// function for evaluating postfix expression
function postfixevaluator(evalst)
{
eval=evalst.split("$");
for(var i=0;i<eval.length-1;i++)
{
if(!operator(eval[i]))
{
push(eval[i]);
}
else
{
var op1=parseInt(pop());
var op2=parseInt(pop());
if(eval[i]=="+")
{
push(op2+op1);
}
else if(eval[i]=="-")
{
push(op2-op1);
}
else if(eval[i]=="*")
{
push(op2*op1);
}
else
{
push(op2/op1);
}
}
}
console.log(pop());
}
// function for push
function push(e)
{
topp++;
stackarr[topp]=e;
}
// function for pop out
function pop()
{
if(topp==-1)
return 0;
else
{
var popped_ele=stackarr[topp];
topp--;
return popped_ele;
}
}
// function for checking whether operator or not
function operator(op)
{
if(op=='+' || op=='-' || op=='^' || op=='*' || op=='/' || op=='(' || op==')')
{
return true;
}
else
return false;
}
// function for checking precedency
function precedency(pre)
{
if(pre=='@' || pre=='(' || pre==')')
{
return 1;
}
else if(pre=='+' || pre=='-')
{
return 2;
}
else if (pre=='/' || pre=='*')
{
return 3;
}
else if(pre=='^')
{
return 4;
}
else
return 0;
}
// function for converting infix expression into postfix expression
function InfixtoPostfix(infixstring)
{
var postfix=[];
var temp=0;
push('@');
var infixval=[];
var temp2="";
for(var i=0;i<infixstring.length;i++)
{
if(operator(infixstring[i]))
{
infixval.push(temp2);
infixval.push(infixstring[i]);
temp2="";
}
else temp2+=infixstring[i];
}
if(temp2!=="")
{
infixval.push(temp2);
}
for(var i=0;i<infixval.length;i++)
{
var el=infixval[i];
if(operator(el))
{
if (el ==')') {
while (stackarr[topp] != "(") {
postfix[temp++] = pop();
postfix[temp++]="$";
}
pop();
}
else if(el=='(')
{
push(el);
}
else if(precedency(el)>precedency(stackarr[topp]))
{
push(el);
}
else
{
while(precedency(el)<=precedency(stackarr[topp])&&topp>-1)
{
postfix[temp++]=pop();
postfix[temp++]="$"
}
push(el);
}
}
else{
postfix[temp++]=el;
postfix[temp++]="$"
}
}
while(stackarr[topp]!='@')
{
postfix[temp++]=pop();
postfix[temp++]="$"
}
var st="";
for(var i=0;i<postfix.length;i++)
{
st+=postfix[i];
}
// Calling postfixevaluator function for evaluating evaluating postfix expression
postfixevaluator(st);
}
//In-Built readline module
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const getLine = (function () {
const getLineGen = (async function* () {
for await (const line of rl) {
yield line;
}
})();
return async () => (await getLineGen.next()).value;
})();
const main = async () => {
//Taking infix expression as input
console.log("Enter the infix expression: ");
var number1 = String(await getLine());
// Caling Function InfixtoPostfix
InfixtoPostfix(number1);
//To close the program
process.exit(0);
};
main();
/*
Input:
Enter the infix expression: 2+3*4
Output:
Evaluated value: 14
Input:
Enter the infix expression: 4+6*3-6
Output:
Evaluated value: 16
Time Complexity: O(n)
Space Complexity: O(n)
*/