-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathbasic_calculator_two.py
262 lines (204 loc) · 7.12 KB
/
basic_calculator_two.py
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
"""
Basic Calculator II:
Given a string s which represents an expression, evaluate this expression and return its value.
The integer division should truncate toward zero.
You may assume that the given expression is always valid. All intermediate results will be in the range of [-231, 231 - 1].
Note: You are not allowed to use any built-in function which evaluates strings as mathematical expressions, such as eval().
Example 1:
Input: s = "3+2*2"
Output: 7
Example 2:
Input: s = " 3/2 "
Output: 1
Example 3:
Input: s = " 3+5 / 2 "
Output: 5
https://leetcode.com/problems/basic-calculator-ii/
"""
import math
"""
-------------------------- PROBLEM ----------------------------------
string s which represents an expression, evaluate this expression and return its value
not allowed to use any built-in function which evaluates strings as mathematical expressions
integer division should truncate toward zero.
s represents a valid expression
s consists of integers and operators ('+', '-', '*', '/')
-------------------------- EXAMPLES ----------------------------------
D/MA/S
"1+2" => 3
"3+2*2" => 3+4 = 7
"5/2+3" => 2+3 = 5
"3+5/2" => 3+2 = 5
"3+5/2+5/2" => 3+2+2 = 7
-------------------------- BRUTE FORCE ----------------------------------
O(n^2) time | O(1) time
- evaluate each of DMAS and add it back to the string
- do division, add it back to the string
- multiplication...
-------------------------- OPTIMAL ----------------------------------
-------------------------- ONE
O(n) time | O(1) time
- separate the s into an array that contain intergers and the signs
- evaluate each of D/MA/S and add it to an array
- do division on array, add the results to after_div array
- do multiplication on after_div, add the results to after_mult array
- do addition on after_mult...
-------------------------- TWO:
stack = [0]
current_number = ""
prev_operand = "+"
# deal with * and /:
- iterate through the array:
- try to build up a number while the characters are numeric
- if you get to a sign:
- if the prev_operand is * or / :
- get the currentNumber and the prevNumber and apply the prev_operand on them then add the result to the stack
- if the prev_operand is -:
- add neg the number to the stack
- if the prev_operand is +:
- add the number to the stack
- record the new prev_operand
- reset current_number = ""
- add all the number in the stack
"""
"""
------------------------------------------------------------------------------------------
"""
class Solution1:
def calculate(self, s: str):
# separate the s into an array that contain integers and the signs
arr = []
i = 0
while i < len(s):
if s[i].isnumeric():
end = i
while end+1 < len(s) and s[end+1].isnumeric():
end += 1
arr.append(int(s[i:end+1]))
i = end + 1
elif s[i] == " ":
i += 1
else:
arr.append(s[i])
i += 1
# division or multiplication
after_dm = []
i = 0
while i < len(arr):
# check for division
if arr[i] == "/":
after_dm[-1] = after_dm[-1] // arr[i+1]
i += 2
# check for multiplication
elif arr[i] == "*":
after_dm[-1] = after_dm[-1] * arr[i+1]
i += 2
else:
after_dm.append(arr[i])
i += 1
# addition or subtraction
after_sa = []
i = 0
while i < len(after_dm):
# check for subtraction
if after_dm[i] == "-":
after_sa[-1] = after_sa[-1] - after_dm[i+1]
i += 2
# check for addition
elif after_dm[i] == "+":
after_sa[-1] = after_sa[-1] + after_dm[i+1]
i += 2
else:
after_sa.append(after_dm[i])
i += 1
return "".join([str(item) for item in after_sa])
"""
------------------------------------------------------------------------------------------
"""
class Solution2:
def calculate(self, s: str):
# separate the s into an array that contain integers and the signs
arr = []
i = 0
while i < len(s):
if s[i].isnumeric():
end = i
while end+1 < len(s) and s[end+1].isnumeric():
end += 1
arr.append(s[i:end+1])
i = end + 1
elif s[i] == " ":
i += 1
else:
arr.append(s[i])
i += 1
stack = []
current_number = ""
prev_operand = "+"
# evaluate addition or subtraction
for idx in range(len(arr)+1):
if idx < len(arr) and arr[idx].isnumeric():
current_number = arr[idx]
continue
if prev_operand == "-":
stack.append(-int(current_number))
elif prev_operand == "+":
stack.append(int(current_number))
elif prev_operand == "*":
prev_num = stack.pop()
stack.append(prev_num * int(current_number))
elif prev_operand == "/":
prev_num = stack.pop()
stack.append(math.trunc(prev_num / int(current_number)))
if idx < len(arr):
prev_operand = arr[idx]
number = 0
while stack:
number += stack.pop()
return number
"""
"""
class Solution3:
def calculate(self, s: str):
# separate the s into an array that contain integers and the signs
arr = []
i = 0
while i < len(s):
if s[i].isnumeric():
end = i
while end+1 < len(s) and s[end+1].isnumeric():
end += 1
arr.append(s[i:end+1])
i = end + 1
elif s[i] == " ":
i += 1
else:
arr.append(s[i])
i += 1
stack = []
# evaluate addition or subtraction
for idx in range(len(arr)):
if not arr[idx].isnumeric():
continue
current_number = arr[idx]
# ignore first number
if idx == 0:
stack.append(int(current_number))
continue
prev_operand = arr[idx-1]
if prev_operand == "-":
stack.append(-int(current_number))
elif prev_operand == "+":
stack.append(int(current_number))
elif prev_operand == "*":
prev_num = stack.pop()
stack.append(prev_num * int(current_number))
elif prev_operand == "/":
prev_num = stack.pop()
stack.append(math.trunc(prev_num / int(current_number)))
if idx < len(arr):
prev_operand = arr[idx]
number = 0
while stack:
number += stack.pop()
return number