Today we will look a common task that is easily solved using a recursive solution, parsing algebraic expressions.
algebraic_expressions.hpp
and algebraic_expressions.cpp
are the skeleton of a module implementing prefix/postfix tests and conversion from postfix to prefix expressions. The file postpre.cpp
is a driver for testing the conversion using command line arguments.algebraic_expressions.cpp
implement the convert function. Build your code locally as you work.algebraic_expressions.cpp
file via Canvas at the Assignment "Exercise for Meeting 11".