Have a bit of C++ code I'm stuck on for class. BETExpr is a abstract binary expression tree expression class which stores pointers to a left and right node, it has two children OperandExpr which stores and int, OperatorExpr which is also an abstract class with children PlusExpr, MinusExpr, MultiplyExpr and DivideExpr
(
Read more... )