-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculator.js
296 lines (289 loc) · 8.6 KB
/
calculator.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
"use strict";
// let expression = doubleOperands(
// searchNumberFloats(
// validationOfString(validationBrackets(" 400 ++ 2.55 + ( - 3 + 2 ) "))
// )
// );
// Проверка на повтор операндов
function doubleOperands(array) {
let arrayOperands = ["ˆ", "*", "/", "+"];
array.forEach((item, index, array) => {
for (let i = 0; i < array.length; i++) {
if (item === arrayOperands[i]) {
for (let j = 0; j < arrayOperands.length; j++) {
if (array[index + 1] === arrayOperands[j]) {
alert(`Чувачёк, ошибочка с операндами, иди исправляй, я жду`);
} else {
continue;
}
}
}
}
});
return array;
}
//проверка на равное количество скобок
function validationBrackets(string) {
let bA = ["(", ")"];
let pos = [0, 0];
let iteration = [0, 0];
for (let i = 0; i < bA.length; ) {
let foundPos = string.indexOf(bA[i], pos[i]);
if (foundPos == -1) {
i++;
} else {
pos[i] = foundPos + 1;
iteration[i]++;
}
}
if (iteration[0] === iteration[1]) {
return string;
} else {
alert(
`Чувак в этом выражение ошибка, беда с скобками. Иди проверяй и возврашайся`
);
}
}
//проверка на наличие неподдерживаюшихся знаков и букв
function validationOfString(string) {
let regexp = /[a-zA-Z\!\@\#\$\%\&\_\{\}\[\]\;\:\<\>\,]/g;
let a = string.match(regexp);
if (a === null) {
return string;
} else {
alert(
`Чувак в этом выражение ошибка, пшел и нашел нормально выражение без вот этого =>(${a})`
);
}
}
//разбор строки на массив и уборка пробелов
function stringSplit(string) {
const arrayOfString = string.split("");
arrayOfString.forEach((item, index, arrayOfString) => {
if (item === " ") {
arrayOfString.splice(index, 1);
return arrayOfString;
}
});
return arrayOfString;
}
//соединение плаваюшей точки и целых чисел
function parseNumberFloat(arr) {
let result = 0;
for (let i = 0; i < arr.length; i++) {
result = result + arr[i];
}
return result;
}
//поиск целых чисел и плаваюшей точки
function searchNumberFloats(string) {
let array = stringSplit(string);
array.forEach((item, index, array) => {
if (item >= 0) {
for (let i = 1; i < array.length; i++) {
if (parseInt(array[index + i], 10) >= 0) {
continue;
} else if (isNaN(array[index + 1]) == true) {
return array;
} else {
let delateCount = index + i;
let a = array.splice(index, delateCount);
let result = parseNumberFloat(a);
array.splice(index, 0, result);
return array;
}
}
} else if (item === ".") {
for (let i = 1; i < array.length; i++) {
if (parseInt(array[index + i], 10) >= 0) {
continue;
} else {
let b = index + i;
let c = index - 1;
let delateCount = b - c;
let a = array.splice(index - 1, delateCount);
let result = parseNumberFloat(a);
array.splice(index - 1, 0, result);
return array;
}
}
}
});
return array;
}
//калькулятор
function simpleCalculate(array) {
const a = parseFloat(array[0], 10);
const b = parseFloat(array[2], 10);
const c = array[1];
if (c === "*") {
return a * b;
} else if (c === "/") {
return a / b;
} else if (c === "+") {
return a + b;
} else if (c === "-") {
return a - b;
} else if (c === "ˆ") {
return a ** b;
} else {
return "Какая то херь!";
}
}
//поиск и обработка унарного минуса
function findingAndHandlingUnaryMinus(arrayOperands, array) {
array.forEach((item, index, array) => {
for (let i = 0; i < array.length; i++) {
if (item === arrayOperands[i]) {
if (array[index + 1] === "-") {
let result = array[index + 2] * -1;
array.splice(index + 1, 2, result);
return array;
} else {
return array;
}
} else if (item === "-") {
if (array[0] === "-") {
let result = array[1] * -1;
array.splice(0, 2, result);
return array;
} else if (array[index + 1] === "-") {
let result = array[index + 2] * -1;
array.splice(index + 1, 2, result);
return array;
}
}
}
});
return array;
}
//проверка на наличие скобок
function checkingForThePresenceOfBrackets(array) {
let closeBracket = array.indexOf(")");
let openBrackets = array.lastIndexOf("(");
if (closeBracket === -1 && openBrackets === -1) {
return false;
} else {
return true;
}
}
//поиск закрываюшейся скобки
function indexSearchOfCloseBrackets(array) {
let closeBracket = array.indexOf(")");
if (closeBracket === -1) {
return false;
} else {
return closeBracket;
}
}
//поиск открываюшейся скобки
function indexSearchOfOpenBrackets(array) {
let closeBracket = array.indexOf(")");
let openBrackets = array.lastIndexOf("(", closeBracket);
if (openBrackets === -1) {
return false;
} else {
return openBrackets;
}
}
//обработка скобок
function spliceForBracketsCountSplice(
indexOfOpenBrackets,
array,
indexOfCloseBrackets
) {
array.splice(indexOfOpenBrackets, 1);
array.splice(indexOfCloseBrackets - 1, 1);
let delateCount = indexOfCloseBrackets - indexOfOpenBrackets - 1;
let playground = array.splice(indexOfOpenBrackets, delateCount);
let answer = fuckingCalculator(playground);
array.splice(indexOfOpenBrackets, 0, answer);
return array;
}
//поиск операндов
function searchIndexOfOperand(operandsArray, array) {
for (let index = 0; index < operandsArray.length; index++) {
let i = array.indexOf(operandsArray[index]);
if (i >= 0) {
return i;
} else {
continue;
}
}
}
//проверка на наличие операндов в массиве
function checkingIfThereIsOperand(operandsArray, array) {
for (let index = 0; index < operandsArray.length; index++) {
let i = array.includes(operandsArray[index]);
if (i === true) {
return i;
} else {
continue;
}
}
}
//вырезание необходимых чисел и операнда
function spliceCountSplice(index, array) {
let playground = array.splice(index - 1, 3);
let answer = simpleCalculate(playground);
array.splice(index - 1, 0, answer);
return array;
}
//верификация
function verificationAndCalculation(operands, array) {
for (let i = 0; i < array.length; i++) {
let verifiedArray = checkingIfThereIsOperand(operands[i], array);
if (verifiedArray === true) {
while (verifiedArray === true) {
let index = searchIndexOfOperand(operands[i], array);
if (typeof index == "number") {
spliceCountSplice(index, array);
} else {
verifiedArray = false;
}
}
} else {
continue;
}
}
}
//главный блок
function fuckingCalculator(arrayOfExpression) {
let arrayOperands = ["(", "ˆ", "*", "/", "+"];
findingAndHandlingUnaryMinus(arrayOperands, arrayOfExpression);
let bracketsArray = checkingForThePresenceOfBrackets(arrayOfExpression);
if (bracketsArray === true) {
while (bracketsArray === true) {
let indexOfOpenBrackets = indexSearchOfOpenBrackets(arrayOfExpression);
let indexOfCloseBrackets = indexSearchOfCloseBrackets(arrayOfExpression);
if (
typeof indexOfOpenBrackets == "number" &&
typeof indexOfCloseBrackets == "number"
) {
spliceForBracketsCountSplice(
indexOfOpenBrackets,
arrayOfExpression,
indexOfCloseBrackets
);
} else {
bracketsArray = false;
}
}
}
let operands = [["ˆ"], ["*", "/"], ["+", "-"]];
verificationAndCalculation(operands, arrayOfExpression);
if (arrayOfExpression.length === 2) {
if (arrayOfExpression[0] < 0) {
arrayOfExpression.splice(1, 0, "+");
spliceCountSplice(1, arrayOfExpression);
return arrayOfExpression;
} else if (arrayOfExpression[0] > 0) {
arrayOfExpression.splice(1, 0, "-");
spliceCountSplice(1, arrayOfExpression);
return arrayOfExpression;
} else {
return arrayOfExpression;
}
}
return arrayOfExpression;
}