logo CodeStepByStep logo

tighten

Language/Type: C++ binary trees pointers recursion

Write a function named tighten that accepts a reference to a pointer to the root of a binary tree of integers. Your function should eliminate branch nodes that have only one child. For example, if a variable named root points to the root of the tree below at left, the call of tighten(root); should modify it to store the tree at right. The nodes that stored 28, 19, 32, and -8 have been eliminated because each had one child. When a node is removed, it is replaced by its child. This can lead to multiple replacements because the child might itself be replaced (as in 19 which is replaced by 32, replaced by 72). Free memory for any nodes that you remove.

root after tighten(root);
(12 (28 (94 (65) (-8 / (10)))) (19 (32 / (72 (42) (50)))))
(12 (94 (65) (10)) (72 (42) (50)))

Constraints: You must implement your function recursively and without using loops. Do not construct any new BinaryTreeNode objects in solving this problem (though you may create as many BinaryTreeNode* pointer variables as you like). Do not use any auxiliary data structures to solve this problem (no array, vector, stack, queue, string, etc).

Assume that you are using the BinaryTreeNode structure as defined below:

struct BinaryTreeNode {
    int data;
    BinaryTreeNode* left;
    BinaryTreeNode* right;
};
Function: Write a C++ function as described, not a complete program.

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.