271 views

Please log in or register to answer this question.

Related questions

1 votes
1 votes
1 answer
2
Aghori asked Jul 4, 2017
480 views
int A(struct node* node) { if (node==NULL) return 0; else { int lDepth = A(node->left); int rDepth = A(node->right); /* use the larger one */ if (lDepth rDepth) return(l...
0 votes
0 votes
1 answer
3
1 votes
1 votes
1 answer
4