-
Notifications
You must be signed in to change notification settings - Fork 130
/
Basic Calculator II.js
68 lines (58 loc) · 1.65 KB
/
Basic Calculator II.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
/**
Implement a basic calculator to evaluate a simple expression string.
The expression string contains only non-negative integers, +, -, *, / operators and empty spaces . The integer division should truncate toward zero.
You may assume that the given expression is always valid.
Some examples:
"3+2*2" = 7
" 3/2 " = 1
" 3+5 / 2 " = 5
Note: Do not use the eval built-in library function.
*/
/**
* @param {string} s
* @return {number}
*/
var calculate = function(s) {
var signs = [],
nums = [],
len = s.length,
num = 0,
ch,
i,
j;
for (i = 0; i < len; i++) {
ch = s.charAt(i);
if (!isNaN(parseInt(ch))) {
num = 0;
for (j = i; j < len && !isNaN(parseInt(s.charAt(j))); j++) {
num = num * 10 + parseInt(s.charAt(j));
}
i = j - 1;
nums.push(num);
} else if (ch === '-' || ch === '+' || ch === '*' || ch === '/') {
signs.push(ch);
}
}
for (i = 0; i < signs.length;) {
if (signs[i] === '*') {
num = nums[i] * nums[i + 1];
nums.splice(i, 2, num);
signs.splice(i, 1);
} else if (signs[i] === '/') {
num = Math.floor(nums[i] / nums[i + 1]);
nums.splice(i, 2, num);
signs.splice(i, 1);
} else {
i++;
}
}
num = nums.shift();
for (i = 0; i < signs.length; i++) {
if (signs[i] === '+') {
num += nums.shift();
} else if (signs[i] === '-') {
num -= nums.shift();
}
}
return num;
};