Write code for finding depth of tree

Answers were Sorted based on User's Feedback



Write code for finding depth of tree..

Answer / om

struct tree //creating structure

{

int data; //data field of node

struct tree *lchild,*rchild;//left child & right child of node

};


//for depth calculation

int depth(struct tree *p)

{

int l,r;

if(p!=NULL)

{

l=depth(p->lchild);

r=depth(p->rchild);

return (1+((l>r)?l:r));

}

return -1;

}

Is This Answer Correct ?    6 Yes 0 No

Write code for finding depth of tree..

Answer / crispin

/*
* Simple tree node representation
*/
struct node_t {
struct node_t *left;
struct note_t *right;
};

/*
* Return the maximum depth of the tree given a pointer
* to its root node.
*/
unsigned int
tree_depth (node_t *root)
{
return (NULL == root) ? 0 :
MAX(tree_depth(root->left, root->right)+1);
}

Is This Answer Correct ?    3 Yes 6 No

Post New Answer

More C Interview Questions

Write a program to print factorial of given number without using recursion?

0 Answers  


write a program to display the numbers in the following format 4 4 3 3 3 3 2 2 2 2 2 2 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 2 2 2 2 2 3 3 3 4

9 Answers   IBM, NIIT, Winit,


What are the languages are portable and platform independent?Why they are like that?

1 Answers   Excel, Satyam,


What will be the outcome of the following conditional statement if the value of variable s is 10?

0 Answers  


Is javascript based on c?

0 Answers  


How to declare a variable?

0 Answers  


What is volatile variable in c?

0 Answers  


What should malloc(0) do?

0 Answers  


explain memory layout of a C program

2 Answers  


What is getche() function?

0 Answers  


Explain how do you print an address?

0 Answers  


How can I read/write structures from/to data files?

0 Answers  


Categories