Another popular interview problem and the start of my tree review is finding the LCA in a binary tree. Now, pay attention - not a binary search tree, that is a different case and will be handled in a separate article; now will use a simple binary tree. For those who don't remember a binary search tree is a sorted binary tree where the left child is always smaller than the root and the right child is always larger. A simple binary tree, as in our case, doesn't have that property.
Let's use the tree below as an example.
![]() |
Fig.1 - Simple Binary Tree |
Now let's say we want to find the LCA for nodes 4 and 9, we will need to traverse the whole tree to compare each node so that we can locate the nodes. Now considering that we start the traversal with the left branch (pre-order traversal) - we have the worst case here with O(n) running time.
Traversing the tree we compare the current node with both of the nodes and if one of them match, it means that one is the LCA on the respective branch. Let's say after traversing the above tree in pre-order the first node that matches our nodes is 9 (2, 7, 2, 6, 5, 11, 5, 9). So the first obvious thought is that the 4 must be a child of 9, since we're already on the right child of node 5 and the pre-order traversal looks at the node first, then the left child and lastly the right child. Then we note node 9 as the LCA and we don't have to look further anymore.
Let's use another case, say we're looking for the LCA of 7 and 9. The first node in our pre-order traversal (2, 7, 2, 6, 5, 11, 5, 9, 4) is 7. Now here we can say that the LCA for the left branch is 7 because again, if the second node is in the same branch, independently of where and how deep it will be in this branch, the LCA will still be 7; thus we don't have to look in this branch anymore. But we still did not look at the right branch, so we keep traversing in a pre-order manner, but now omitting the other nodes: 2, 7, 5, 9. Now we can say that the LCA for that branch is 9. We can also affirm that the LCA for the branch with the root in node 5 is also 9. And in the end we have our nodes both in separate branches, which means that the LCA is the root of those branches - node 2.
The algorithm looks as a modified version of a pre-order tree traversal :
For the node representation we'll use the following class:
Please keep on posting about This topic. I want to know more details about it.
ReplyDeleteTree Service Birmingham Alabama
Marvelous posting! I quite enjoyed reading it, you may be a great author.I will ensure that I bookmark your blog and will eventually come back in the foreseeable future..
ReplyDeleteTree Service Company in Birmingham
Hi, could you please explain it a bit more. I did not understand the second example you gave.
ReplyDeleteAgreed
DeleteThis will not work if either of the two searched values is repeated. Say I am searching for 7, 9; and say the left subtree at root contains 7 and 9; and the right subtree (of root) contains just 9. You code returns the root as answer, where as the answer lies within the root's left subtree.
ReplyDeleteNo, 7 and 9 should return root. I fails for 7 and 2, 5 and 9, etc
Deletefor the first example (finding LCA for 9 and 4), the LCA should be 5 as per my knowledge but your code give answer as 9.
ReplyDeleteif (root.equals(a) || root.equals(b)) {
ReplyDelete// if at least one matched, no need to continue
// this is the LCA for this root
return root;
}
This assumption many not be valid always. For example, you maybe able to find a, but if b is not present anywhere in the tree, then u still return return a assuming it to be the ancestor anyway..
If a is present as a left child of any node, due to the last step:
return l != null ? l : r;
it will return a as the common ancestor, which it is not !!!
We'll be given two key values no? first search and find two nodes having those key values. if we can't find either of two or both, we do not call the above function :)
DeleteThis breaks on the case that only one match is found - which will return that one match as the common ancestor.
DeleteThe problem is that the recursion uses true for both 1 match found as well as both matches found.
The above method fails in the example tree when searching for 7 and 2
ReplyDeleteI think the algorithms given will fail if you try to find LCA for two sibling nodes. for example 2 and 6 in your given example.
ReplyDeleteYou are right Azure. It fails for the sibling nodes 2 and 6 because it returns as soon as the node is matched.
DeleteThe algorithm works fine for the siblings too because it returns the value to the "left". Next, it repeats for the right as well. Based on the result it gives the result.
DeleteThis is my runnable code! :D
ReplyDeletepublic class NodeTree{
public NodeTree left, right;
public int num;
public NodeTree(int n){ num = n};
}
public class question{
public static void main (String [] args) {
NodeTree n1 = new NodeTree(1);
NodeTree n2 = new NodeTree(2);
NodeTree n3 = new NodeTree(3);
NodeTree n4 = new NodeTree(4);
NodeTree n5 = new NodeTree(5);
NodeTree n6 = new NodeTree(6);
NodeTree n7 = new NodeTree(7);
NodeTree n8 = new NodeTree(8);
NodeTree n9 = new NodeTree(9);
n1.left = n2;
n1.right = n3;
n2.left = n5;
n2.right = n6;
n3.right = n4;
n5.left = n7;
n5.right = n8;
n7.left = n9;
System.out.println(commonAncestor(n1, 9, 6));
}
public static int commonAncestor(NodeTree root, int in1, int in2){
LinkedList stack = new LinkedList<>(), ancQ1 = new LinkedList<>(), ancQ2 = new LinkedList<>();
findAncestor(in1, root, stack, ancQ1);
stack.clear();
// stack = new ArrayList<>();
findAncestor(in2, root, stack, ancQ2);
int commonAns = -1;
boolean keepChecking = true;
int minSize = Math.min(ancQ1.size(), ancQ2.size());
for(int i = 0; i < minSize && keepChecking; i++){
NodeTree n1 = ancQ1.removeFirst();
NodeTree n2 = ancQ2.removeFirst();
if (n1.num == n2.num)
commonAns = n1.num;
else
keepChecking = false;
}
return commonAns;
}
public static void findAncestor(int n, NodeTree root, LinkedList stack, LinkedList ancQ){
NodeTree head;
Set visited = new HashSet<>();
stack.addFirst(root);
visited.add(root.num);
while(!stack.isEmpty()){
head = stack.getFirst();
if(head.num == n)
return;
if(head.left == null && head.right==null){
stack.removeFirst();
}
else
if((head.left != null && visited.contains(head.left.num)) ||
(head.right != null && visited.contains(head.right.num))) {
stack.removeFirst();
ancQ.removeLast();
}
else{
if(head.left != null ){
stack.addFirst(head.left);
visited.add(head.left.num);
}
if(head.right != null){
stack.addFirst(head.right);
visited.add(head.right.num);
}
ancQ.addLast(head);
}
}
}
My solution:
ReplyDeletestatic Node lca(Node root,int v1,int v2)
{
Node currentAncestor = null;
Queue q = new LinkedList();
q.add(root);
while(!q.isEmpty()){
Node temp = (Node)q.remove();
if( isAncestor(temp,v1) && isAncestor(temp,v2) ){
currentAncestor = temp;
q.add(temp.left);
q.add(temp.right);
}
//System.out.println(".....");
}
return currentAncestor;
}
static boolean isAncestor(Node node, int v){
if(node == null)
return false;
//System.out.println(node.data);
if(node.data == v){
return true;
}
return isAncestor(node.left, v) || isAncestor(node.right, v);
}
This is a great analysis. I also has an in-depth discussion about this question here http://bit.ly/29kAkXM. Any comment is welcomed :)
ReplyDeleteBills vs Panthers Live
ReplyDeleteBills vs Panthers
Eagles vs Chiefs
Eagles vs Chiefs Live
Dolphins vs Chargers
Dolphins vs Chargers Live
49ers vs Seahawks
49ers vs Seahawks Live
Lions vs Giants
Lions vs Giants Live
Titans vs Jaguars
Titans vs Jaguars Live
thanks for explaining in easy way
ReplyDeleteIn the virtual model of the game, you employ an electronic display screen either in your system or in your native on line casino. Some of those roulette machines, especially those in offline casinos, have computerized safety towards any bets positioned concurrently. For occasion, you won’t in a position to|be capable of|have the power to} guess equal sums on reverse colours. When you make such a guess, 바카라사이트 you get a warning message that stops you from placing more bets for quantity of} seconds. Make certain you realize the principles of the game earlier than you play, or else you would possibly danger getting banned.
ReplyDelete