vote up 4 vote down star
1

The Binary Tree here is not a Binary Search Tree. Its just a Binary Tree.

The structure could be taken as -

struct node {
    int data;
    struct node *left;
    struct node *right;
};

The maximum solution I could work out with a friend was something of this sort -

Consider this binary tree (from http://lcm.csa.iisc.ernet.in/dsa/node87.html) :

Binary Tree

The inorder traversal yields - 8, 4, 9, 2, 5, 1, 6, 3, 7

And the postorder traversal yields - 8, 9, 4, 5, 2, 6, 7, 3, 1

So for instance, if we want to find the common ancestor of nodes 8 and 5, then we make a list of all the nodes which are between 8 and 5 in the inorder tree traversal, which in this case happens to be [4, 9, 2]. Then we check which node in this list appears last in the postorder traversal, which is 2. Hence the common ancestor for 8 and 5 is 2.

The complexity for this algorithm, I believe is O(n) (O(n) for inorder/postorder traversals, the rest of the steps again being O(n) since they are nothing more than simple iterations in arrays). But there is a strong chance that this is wrong. :-)

But this is a very crude approach, and I'm not sure if it breaks down for some case. Is there any other (possibly more optimal) solution to this problem?

flag

75% accept rate

3 Answers

vote up 3 vote down check

Nick Johnson is correct. But keep in mind that if your nodes have parent pointers, a slight variation on his algorithm is possible. For both nodes in question construct a list containing the path from root to the node by starting at the node, and front inserting the parent.

So for 8 in your example, you get (showing steps): {4}, {2, 4}, {1, 2, 4}

Do the same for your other node in question, resulting in (steps not shown): {1, 2}

Now compare the two lists you made looking for the first element where the list differ, or the last element of one of the lists, whichever comes first.

This algorithm requires O(h) where h is the height of the tree. If the tree is balanced, that is O(log(n)).


Regardless of how the tree is constructed, if this will be an operation you perform many times on the tree without changing it in between, there are other algorithms you can use that require O(n) [linear] time preparation, but then finding any pair takes only O(1) [constant] time. For references to these algorithms, see the the lowest common ancestor problem page on Wikipedia. (Credit to Jason for originally posting this link)

link|flag
That does the job if the parent pointer is given. The nodes in the tree are as the structure I gave in my question - just the left/right child pointers, no parent pointer. Is there any O(log(n)) solution if there is no parent pointer available, and the tree is not a binary search tree, and is just a binary tree? – Siddhant Sep 28 at 9:58
If you have no particular way of finding the path between the parent and a given node, then it will take O(n) time on average to find that. That will make it impossible to have O(log(n)) time. However, the O(n) one time cost, with O(1) pair finding may be your best bet anyway if you were going to perform this operation many times without changing the tree in between. Otherwise, If at all possible you should add the parent pointer. It can make quite a few potential algorithms faster, yet I'm pretty sure it does not change the order of any existing algorithm. Hope this helps. – Joe Smith Oct 7 at 4:25
vote up 1 vote down

Well, this kind of depends how your Binary Tree is structured. Presumably you have some way of finding the desired leaf node given the root of the tree - simply apply that to both values until the branches you choose diverge.

If you don't have a way to find the desired leaf given the root, then your only solution - both in normal operation and to find the last common node - is a brute-force search of the tree.

link|flag
vote up 0 vote down

Tarjan's off-line least common ancestors algorithm is good enough (cf. also Wikipedia). There is more on the problem (the lowest common ancestor problem) on Wikipedia.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.