-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomework_04.js
58 lines (52 loc) · 1.62 KB
/
homework_04.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
function Stack() {
this.array = [];
}
Stack.prototype.push = function (insert) {
this.array.push(insert);
}
Stack.prototype.pop = function () {
return this.array.pop();
}
Stack.prototype.peek = function () {
return this.array[this.array.length - 1];
}
Stack.prototype.isEmpty = function () {
return this.array.length == 0;
}
function rpn(stringa) {
var stack = new Stack();
var z = stringa.split(" ");
for (var i = 0; i < z.length; i++) {
var ris = 0;
switch (z[i]) {
case "+":
ris = stack.pop();
ris += stack.pop();
stack.push(ris);
break;
case "-":
ris = stack.pop();
ris = stack.pop() - ris;
stack.push(ris);
break;
case "*":
ris = stack.pop();
ris *= stack.pop();
stack.push(ris);
break;
case "/":
ris = stack.pop();
ris = stack.pop() / ris;
stack.push(ris);
break;
case "^":
ris = stack.pop();
ris = Math.pow(ris, stack.pop());
stack.push(ris);
break;
default:
stack.push(parseInt(z[i]));
}
}
return stack.pop();
}