-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
328 lines (264 loc) · 7.31 KB
/
main.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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/*
This is a helper file containg all the logic use in postfix and prefix convertor and evaluator
stacker class :: is a stack maker
checker :: is for checking the expression is postfix or prefix
precedencer :: is for checking the precedence of the expression
*/
class stacker {
constructor(size = 100) {
this.size = size;
this.items = [];
this.top = -1; // we can also is -> this.items.length
}
// Getters for stack below
get lastIndex() {
// this return the index of last item
return this.top;
}
get stackLen() {
return this.items.length;
}
get leftSize() {
return this.size - this.stackLen;
}
get peek() {
if (this.isEmpty() == true) {
return null;
} else {
return this.items[this.top];
}
}
// Setters for stack below
getItem(index) {
if (index > this.top || index < 0) {
return null;
} else {
return this.items[index];
}
}
isFull() {
if (this.top == this.size - 1) {
return true;
} else {
return false;
}
}
isEmpty() {
if (this.top < 0) {
return true;
} else {
return false;
}
}
push(element) {
if (this.isFull() == true) {
return console.log("Stack is Full Now");
} else {
this.top++;
this.items[this.top] = element;
return true;
}
}
pop() {
var data;
if (this.isEmpty() == true) {
return false;
} else {
// data = this.items[this.top];
// this.items[this.top] = undefined;
// or we can use
data = this.items.splice(this.top, 1); // this will return an array with single element more efficient
this.top--;
return data[0];
}
}
traverse() {
return this.items;
}
}
// INFIX TO POSTFIX
const preference = {
"-": 0,
"+": 0,
"%": 1,
"/": 1,
"*": 1,
"^": 2,
")": 3,
"(": 3,
};
function precidencer(item) {
var operators = ["", "(", ")", "-", "+", "%", "/", "*", "^"];
for (var j = 0; j < operators.length; j++) {
if (item == operators[j]) {
return j;
}
}
return 0;
}
const isAnOperator = (s) => preference[s] !== undefined;
const isAParen = (s) => preference[s] === 3;
function infixToPostfixV2(expression, tab = 0) {
console.log(expression);
}
// Infix to postfix conversion
function infixToPostfix(expression, tab = 0, prefixMode = false) {
const infixExp = [...expression.split(""), ")"];
const postfixExp = [];
const stack = ["("];
var table = {
exp: [],
stack: [],
conexp: [],
};
table.exp.push("");
table.stack.push(stack.join(" "));
table.conexp.push(postfixExp.join(""));
for (var char of infixExp) {
if (!isAnOperator(char)) {
postfixExp.push(char);
} else if (char === "(") {
stack.push("(");
} else if (char === ")") {
let peek = stack[stack.length - 1];
while (stack.length > 0 && peek !== "(") {
const top = stack.pop();
postfixExp.push(top);
peek = stack[stack.length - 1];
}
stack.pop();
} else if (isAnOperator(char)) {
let pref = preference[char];
let peek = stack[stack.length - 1];
const condition = () =>
prefixMode ? pref < preference[peek] : pref <= preference[peek];
while (condition()) {
if (peek === "(") {
break;
}
let top = stack.pop();
postfixExp.push(top);
peek = stack[stack.length - 1];
}
stack.push(char);
}
if (tab == 1) {
table.exp.push(char);
table.stack.push(stack.join(" "));
table.conexp.push(postfixExp.join(""));
}
}
postfixExp.push(...stack.reverse());
return {
postfixExpression: postfixExp.join(""),
table: table,
};
}
// reverser
function reverser(expression) {
var _temp = expression.split("");
for (var i = 0; i < expression.length; i++) {
if (_temp[i] === ")") {
_temp[i] = "(";
} else if (_temp[i] === "(") {
_temp[i] = ")";
}
}
return _temp.reverse().join("");
}
function infixToPrefix(expression, tab = 0) {
expression = infixToPostfix(reverser(expression), tab, true);
return {
prefixExpression: reverser(expression["postfixExpression"]),
table: expression["table"],
};
}
function isNumbers(expression) {
let isNumber = true;
const splited = expression.split(" ");
for (const char of splited) {
if ("+-/*()^".includes(char)) continue;
const num = parseInt(char);
if (num.toString() === "NaN") {
isNumber = false;
break;
}
}
return isNumber;
}
function postfixEval(expression) {
expression = expression.trim();
if (expression.length > 1 && !expression.includes(" ")) {
alert("Please add 'space' between elements");
return;
}
const postfixExp = [...expression.split(" "), ")"];
const isNumber = isNumbers(expression);
const table = {
char: [],
s: [],
};
const stack = [];
let finalResult = 0;
for (const char of postfixExp) {
if (char === ")") break;
if (!isAnOperator(char)) {
stack.push(char);
} else {
const a = stack.pop();
const b = stack.pop();
let result = `(${b}${char}${a})`;
stack.push(result);
}
finalResult = stack[stack.length - 1];
table.char.push(char);
table.s.push(stack.join(" "));
}
let _tresult = `${finalResult}`;
if (isNumber) {
_tresult += ` = ${eval(finalResult)}`;
}
table.s[table.s.length - 1] = _tresult;
return table;
}
function prefixEval(expression) {
expression = expression.trim();
const isNumber = isNumbers(expression);
if (expression.length > 1 && !expression.includes(" ")) {
alert("Please add 'space' between elements");
return;
}
const prefixExp = expression.split(" ");
const stack = [];
const table = {
char: [],
s: [],
};
for (const char of prefixExp.reverse()) {
if (!isAnOperator(char)) {
stack.push(char);
} else {
const a = stack.pop();
const b = stack.pop();
const result = `(${a}${char}${b})`;
stack.push(result);
}
table.char.push(char);
table.s.push(stack.join(" "));
}
const finalResult = table.s[table.s.length - 1];
let _tresult = `${finalResult}`;
console.log(finalResult);
if (isNumber) {
_tresult += ` = ${eval(finalResult)}`;
}
table.s[table.s.length - 1] = _tresult;
return table;
}
function checker(expression) {
if (precidencer(expression[0]) > 2) {
return 1;
} else {
return 0;
}
}