
Patrick B. answered 05/29/19
Tutor
4.7
(31)
Math and computer tutor/teacher
So it is an expression parser and calculator.
Parse the string into tokens
Push operands onto a stack
when you get an operator, pop two operands off the stack,
do the calculation, and pop the result on the stack