Question: 1 4 . If we run the following function for a BST , what result will we get? void fonk ( BTREE root ) (

14. If we run the following function for a BST, what result will we get?
void fonk (BTREE root)(
if(root!=NULL){ fonk (root->right), printf("id\t", root->data); fonk (root->left);
A) Numbers are listed from smallest to largest
B) Numbers are listed from largest to smallest
C) Inorder traversal
D) Postorder traversal

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 Databases Questions!