We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Node*lca(Node*root,intv1,intv2){// Write your code here.if(root==NULL)returnNULL;if(root->data==v1||root->data==v2)returnroot;Node*lca1=lca(root->left,v1,v2);Node*lca2=lca(root->right,v1,v2);if(lca1!=NULL&&lca2!=NULL)returnroot;elseif(lca1!=NULL)returnlca1;elsereturnlca2;}
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Binary Search Tree : Lowest Common Ancestor
You are viewing a single comment's thread. Return to all comments →
C++