Question: Consider the following code and tree What will be the output of the function if it has as input the tree of the figure? a)

Consider the following code and tree

What will be the output of the function if it has as input the tree of the figure?

a) ( 15 ( 25 ( 20 )( 31 )) ( 8 ( 12 )) )

b) ( 15 ( 8 ( 12 ))( 25 ( 20 )( 31 )))

Consider the following code and tree What will be the output of

{ typedef struct tree int info; struct tree *left, *right } tree i i void function( tree *a) { if (a) { printf("( %d ", a->info); function (a -> left); function (a -> right) printf(""); } } ; 15 8 25 12 31 20

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!