void F(node&*root){if(root!=0){F(root->left); F(root->right); root->data=0; delete root;}root=0;} this code Select one: a. all of them b. Set all data items in the binary tree to 0 c. free the binary...



void F(node&*root){if(root!=0){F(root->left); F(root->right); root->data=0; delete root;}root=0;} this code




Select one:



a.

all of them






b.

Set all data items in the binary tree to 0






c.

free the binary tree and returns it empty






d.

remove all items in the binary tree without changing its size








Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here