-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrpn.py
41 lines (31 loc) · 1.15 KB
/
rpn.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
from cmath import sqrt
def rpn(expression: str):
operation_table = {
"+": lambda stack: stack.append(stack.pop() + stack.pop()),
"-": lambda stack: stack.append(stack.pop(-2) - stack.pop()),
"*": lambda stack: stack.append(stack.pop() * stack.pop()),
"/": lambda stack: stack.append(stack.pop(-2) / stack.pop()),
"SQRT": lambda stack: stack.append(sqrt(stack.pop())),
"MAX": lambda stack: rpn_max(stack),
}
tokens = expression.split(' ')
stack = []
for token in tokens:
if token.lstrip('-').isdigit():
stack.append(int(token))
elif isValidOperator(token) and containsEnoughOperands(stack, token):
operation_table[token](stack)
else:
raise(ValueError)
return stack.pop()
def rpn_max(stack):
maxStack = max(stack)
stack.clear()
stack.append(maxStack)
def isValidOperator(operator: str):
validOperators = ['+', '*', '/', '-', 'SQRT', 'MAX']
return operator in validOperators
def containsEnoughOperands(stack, token):
if token == "MAX" or token == "SQRT":
return len(stack) >= 1
return len(stack) >= 2