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. free the binary tree and returns it empty b. Set all data items in 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.

free the binary tree and returns it empty






b.

Set all data items in the binary tree to 0






c.

remove all items in the binary tree without changing its size






d.

all of them








Jun 08, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here