I have a question regarding the shunting yard algorithm. I am trying to implement it in Python. As I am new to python, i want to achieve this in the simplest way possible. The code I have developed so far is:
def main():
finished = False
while finished == False:
expression = []
inorpost = ''
ip = infixorpostfix(inorpost)
obtain(expression)
prnt(expression)
if ip == 'i':
processinfix(expression)
elif ip == 'p':
evaluate(expression)
answer = input('Are you done? Type yes if you are. Else type anything. \n')
if answer == 'yes':
finished = True
print ('Thanks for trying this program. \n')
def infixorpostfix(ip):
valid = False
while valid == False:
ip = input('Is your expression in infix (i) or postfix (p) notation? \n')
if ip == 'i' or ip == 'p':
valid = True
return ip
def obtain(exp):
valid = False
while valid == False:
number = str(input('How many items are in your expression? Please type in a numerical number. \n'))
n = integer(number)
if isinstance(n, int):
valid = True
a = 1
while a <= n:
suffix = fix(a)
item = input('What is the ' + str(a) + str(suffix) + ' item? \n')
i = integer(item)
exp.append(i)
a = a + 1
def fix(f):
if f % 10 == 1:
suff = 'st'
elif f % 10 == 2:
suff = 'nd'
elif f % 10 == 3:
suff = 'rd'
else:
suff = 'th'
return suff
def processinfix(exp):
output = []
stck = []
for items in range(len(exp)):
n = integer(str(exp[items]))
if isinstance(n, int):
output.append(n)
elif exp[items] == '+' or exp[items] == '-' or exp[items] == '*' or exp[items] == '/':
popappend(stck, output, exp[items])
while stck != []:
token = stck.pop()
output.append(token)
evaluate(output)
# Shunting Yard Algorithm
def popappend(s, o, i):
if len(s) == 0:
s.append(i)
elif i == '+' or i == '-':
while s[-1] == '+' or s[-1] == '*' or s[-1] == '-' or s[-1] == '/':
B = s.pop()
o.append(B)
s.append(i)
elif i == '*' or i == '/':
while s[-1] == '*' or s[-1] == '/':
B = s.pop()
o.append(B)
s.append(i)
def evaluate(exp):
stack = []
for items in range(len(exp)):
if isinstance(exp[items], int):
stack.append(exp[items])
elif exp[items] == '+':
a1 = stack.pop()
a2 = stack.pop()
a3 = a1 + a2
stack.append(a3)
elif exp[items] == '-':
a1 = stack.pop()
a2 = stack.pop()
a3 = a2 - a1
stack.append(a3)
elif exp[items] == '*':
a1 = stack.pop()
a2 = stack.pop()
a3 = a1 * a2
stack.append(a3)
elif exp[items] == '/':
a1 = stack.pop()
a2 = stack.pop()
a3 = round((a2 / a1), 2)
stack.append(a3)
print ('The answer to your equation is: ' + str(stack[len(stack) - 1]))
def integer(n):
if isinstance(n, str):
length = len(n)
a = 0
for items in range(len(n)):
i = n[items]
if i=='1' or i=='2' or i=='3' or i=='4' or i=='5' or i=='6' or i=='7' or i=='8' or i=='9' or i=='0':
a = a + 1
if a == length:
n = int(n)
return n
def prnt(exp):
toprint = ''
for items in range(len(exp)):
toprint = toprint + ' ' + str(exp[items])
print ('Your equation was: ' + toprint)
I am having trouble in the modules 'popappend' and 'processinfix'. The rest of the code works. When I say input an equation such as 5 + 6 + 3 * 6, an error comes up saying the list index is out of range. Is there an easy better way of implementing the shunting yard algorithm. I think that is where I am going wrong with this. (I know the code is messy, and isn't concise, but i am new so please ignore that.) Any help would be most appreciated. Thanks..