Question: node *makeMirrorCopy(node *root); Description: A function that creates a new tree, which is a reflection of the tree rooted at root. This function must create
node *makeMirrorCopy(node *root);
Description: A function that creates a new tree, which is a reflection of the tree rooted at root. This function must create an entirely new tree in memory. As your function creates a new tree, it must not destroy or alter the structure or values in the tree that was passed to it as a parameter. Tampering with the tree rooted at root will cause test case failure.
Returns: A pointer to the root of the new tree. (This implies, of course, that all the nodes in the new tree must be dynamically allocated.)
typedef struct node
{
int data;
struct node *left, *right;
} node;
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
