Python/data_structures/stacks/postfix_evaluation.py

69 lines
2.0 KiB
Python
Raw Normal View History

"""
Output:
Enter a Postfix Equation (space separated) = 5 6 9 * +
Symbol | Action | Stack
-----------------------------------
5 | push(5) | 5
6 | push(6) | 5,6
9 | push(9) | 5,6,9
| pop(9) | 5,6
| pop(6) | 5
* | push(6*9) | 5,54
| pop(54) | 5
| pop(5) |
+ | push(5+54) | 59
Result = 59
"""
import operator as op
2019-10-05 05:14:13 +00:00
def Solve(Postfix):
Stack = []
Div = lambda x, y: int(x / y) # noqa: E731 integer division operation
2019-10-05 05:14:13 +00:00
Opr = {
"^": op.pow,
"*": op.mul,
"/": Div,
"+": op.add,
"-": op.sub,
} # operators & their respective operation
# print table header
2019-10-05 05:14:13 +00:00
print("Symbol".center(8), "Action".center(12), "Stack", sep=" | ")
print("-" * (30 + len(Postfix)))
for x in Postfix:
2019-10-05 05:14:13 +00:00
if x.isdigit(): # if x in digit
Stack.append(x) # append x to stack
# output in tabular format
print(x.rjust(8), ("push(" + x + ")").ljust(12), ",".join(Stack), sep=" | ")
else:
2019-10-05 05:14:13 +00:00
B = Stack.pop() # pop stack
# output in tabular format
print("".rjust(8), ("pop(" + B + ")").ljust(12), ",".join(Stack), sep=" | ")
2019-10-05 05:14:13 +00:00
A = Stack.pop() # pop stack
# output in tabular format
print("".rjust(8), ("pop(" + A + ")").ljust(12), ",".join(Stack), sep=" | ")
2019-10-05 05:14:13 +00:00
Stack.append(
str(Opr[x](int(A), int(B)))
) # evaluate the 2 values popped from stack & push result to stack
# output in tabular format
2019-10-05 05:14:13 +00:00
print(
x.rjust(8),
("push(" + A + x + B + ")").ljust(12),
",".join(Stack),
sep=" | ",
)
return int(Stack[0])
if __name__ == "__main__":
2019-10-05 05:14:13 +00:00
Postfix = input("\n\nEnter a Postfix Equation (space separated) = ").split(" ")
print("\n\tResult = ", Solve(Postfix))