Last active
December 14, 2015 23:28
-
-
Save KodeSeeker/5165507 to your computer and use it in GitHub Desktop.
Write an algorithm to find the ‘next’ node (e g , in-order successor) of a given node in a binary search tree where each node has a link to its parent . Parent pointer is provided.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static TreeNode inorderSucc(Node n) { | |
if (n != null) { | |
Node p; | |
if (n.parent == null || n.right != null) { // if n is the root element, and has a right child. | |
p = leftMostChild(e.right); // the succesor is the leftmost child of the right child of 'n' | |
} else | |
{ | |
// n is not the root. | |
/* | |
Get the parent of n, p. If the left child of p ==n, then p is the successor. | |
Else, make n=p, and check till the parent, p.left==n. At this point the value of p will be the | |
successor of the original node. | |
*/ | |
while ((p = e.parent) != null) { | |
if (p.left == n) { | |
break; | |
} | |
n = p; | |
} | |
} | |
return p; //successor | |
} | |
return null; | |
} | |
public static TreeNode leftMostChild(Node e) { | |
if (e == null) return null; | |
while (e.left != null) | |
e = e.left; // keep going left | |
return e; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment