-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexpression_solve.py
193 lines (174 loc) · 5.24 KB
/
expression_solve.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
import math
class BList(object):
expr = None
brackets_list = []
def __init__(self, expression):
self.expr = expression
self.get_brakcets_list()
self.match_brackets()
#indexs all brackets in expression
def get_brakcets_list(self):
self.brackets_list = []
for c in range(0, len(self.expr)):
if self.expr[c] == "(" or self.expr[c] == ")":
self.brackets_list.append((self.expr[c], c, None))
return self.brackets_list
#organize brackets list to so corosponding brackets are matched
def match_brackets(self):
focus = None
c = 0
while c < len(self.brackets_list):
if self.brackets_list[c][0] == "(" and self.brackets_list[c][2] == None:
focus = c
if self.brackets_list[c][2] == None and self.brackets_list[c][0] == ")" and focus != None:
self.brackets_list[focus] = ("(", self.brackets_list[focus][1], self.brackets_list[c][1])
self.brackets_list[c] = (")", self.brackets_list[c][1], self.brackets_list[focus][1])
focus = None
c = 0
continue
c+=1
return self.brackets_list
#get a matching closing bracket for any given opening bracket
def get_match(self, c):
for x in self.brackets_list:
if x[2] == c:
return x[1]
return None
class Solve(object):
variables = []
def __init__(self, expr):
print("A:", self.analyize_expression(expr))
def analyize_expression(self, expr):
for t in expr.split(" "):
if len(t) == 1:
try:
float(t)
except ValueError:
if t not in ["(", ")", "^", "*", "/", "+", "-"] and t not in variables:
self.declare_variable(t)
if "(" in expr:
while "(" in expr:
try:
for c in range(0, len(expr)):
if expr[c] == "(":
br = BList(expr)
expr = expr.replace(
expr[c:br.get_match(c) + 1],
self.analyize_expression(expr[c +1:br.get_match(c)]),
1)
except IndexError:
continue
expr = self.solve_expression(expr)
return expr
def declare_variable(self, var):
print(var, "=", end = "")
self.variables.append((var, float(input(""))))
def solve_expression(self, expr):
terms = expr.split()
while len(terms) > 1:
for t in range(0, len(terms)):
for v in self.variables:
if terms[t] == v[0]:
terms[t] = v[1]
if "pi" in terms:
for t in range(0, len(terms)):
if terms[t] == "pi":
terms[t] = str(math.pi)
for t in range(0, len(terms)):
try:
if "tan" in terms[t] or "cos" in terms[t] or "sin" in terms[t] or "atan" in terms[t] or "acos" in terms[t] or "asin" in terms[t]:
self.trig(terms, t)
except IndexError:
break
if "^" in terms:
for t in range(0, len(terms)):
try:
if terms[t] == "^":
self.power(terms, t)
except IndexError:
break
for t in range(0, len(terms)):
try:
#root, 2root, 3root
if terms[t].find("root") != -1:
self.root(terms, t)
except IndexError:
break
if "*" in terms or "/" in terms:
for t in range(0, len(terms)):
try:
if terms[t] == "*":
self.times(terms, t)
elif terms[t] == "/":
self.obelus(terms, t)
except IndexError:
break
last_term_number = None
for t in range(0, len(terms)):
try:
float(terms[t])
if last_term_number:
self.times(terms, t)
else:
last_term_number = True
except ValueError:
last_term_number = False
if "+" in terms or "-" in terms:
for t in range(0, len(terms)):
try:
if terms[t] == "+":
self.plus(terms, t)
elif terms[t] == "-":
self.minus(terms, t)
except IndexError:
break
return " ".join(terms)
def plus(self, terms, t):
terms[t - 1] = str(float(terms[t - 1]) + float(terms[t + 1]))
terms.pop(t)
terms.pop(t)
def minus(self, terms, t):
terms[t - 1] = str(float(terms[t - 1]) - float(terms[t + 1]))
terms.pop(t)
terms.pop(t)
def power(self, terms, t):
terms[t - 1] = str(float(terms[t - 1]) ** float(terms[t + 1]))
terms.pop(t)
terms.pop(t)
def times(self, terms, t):
try:
#multiply adjacent factors
float(terms[t])
terms[t - 1] = str(float(terms[t - 1]) * float(terms[t]))
terms.pop(t)
except ValueError:
#multiply factors separated by '*'
terms[t - 1] = str(float(terms[t - 1]) * float(terms[t + 1]))
terms.pop(t)
terms.pop(t)
def obelus(self, terms, t):
terms[t - 1] = str(float(terms[t - 1]) / float(terms[t + 1]))
terms.pop(t)
terms.pop(t)
def root(self, terms, t):
if terms[t] == "root":
terms[t] = str(float(terms[t + 1]) ** (1 / 2))
else:
terms[t] = str(float(terms[t + 1]) ** (1 / float(terms[t].replace("root", ""))))
terms.pop(t + 1)
def trig(self, terms, t):
if terms[t] == "tan":
terms[t] = str(math.tan(float(terms[t + 1])))
elif terms[t] == "atan":
terms[t] = str(math.atan(float(terms[t + 1])))
elif terms[t] == "cos":
terms[t] = str(math.cos(float(terms[t + 1])))
elif terms[t] == "acos":
terms[t] = str(math.acos(float(terms[t + 1])))
elif terms[t] == "sin":
terms[t] = str(math.sin(float(terms[t + 1])))
elif terms[t] == "asin":
terms[t] = str(math.asin(float(terms[t + 1])))
terms.pop(t + 1)
while True:
Solve(input("Q: "))