Question: Write a function bool expMatch(Expression *e 1 , Expression *e 2 ); that returns true if e 1 and e 2 are matching expressions, which

Write a function

bool expMatch(Expression *e1, Expression *e2);

that returns true if e1 and e2 are matching expressions, which means that they have exactly the same structure, the same operators, the same constants, and the same identifier names, in the same order. If there are any differences at any level of the expression tree, your function should return false.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!