vote up 2 vote down star

how to merge two binary search trees maintaining the prop of BST...naive way of doing it is

take each element from a tree and insert it into the other...

Complexity of this method being O(n1 * log(n2))..

where n1 is the no of nodes of the tree(say T1) which we have splitted and n2 is the number

of nodes of the other tree(say T2)...

after this operation T2 is the only BST that has n1+n2 nodes...

My question is..Can we do any better than O(n1 * log(n2))?..

thanks in advance..

flag
does the resultant tree have to be balanced? If not, you can just insert the root of tree 1 into tree 2 and it will remain a BST (just unbalanced). – Evan Teran Jun 17 at 17:40
1  
Inserting the root of tree 1 into tree 2 will not work in every case. – Brandon E Taylor Jun 17 at 17:45
You are making the assumption that all binary search trees are balanced. (For instance Splay trees are not) Also I think your complexity is slightly off. Because n2 is increasing, the tree will get deeper as you insert values. Maybe (n1 + n2) / 2 is a better approximation (Because at the beginning of the insert it is O(log n2) to insert and at the end it is O(log(n1 + n2)). – jabbie Jun 18 at 0:50

5 Answers

vote up 3 vote down

What about flattening both trees into sorted lists, merging the lists and then creating a new tree?

link|flag
As others have pointed out after my post, the complexity of this procedure is O(n1+n2). For example, see yairchu's elaboration on my answer. – Naaff Jun 18 at 0:30
vote up 3 vote down
  • Flatten trees into sorted lists.
  • Merge sorted lists.
  • Create tree out of merged list.

IIRC, that is O(n1+n2).

link|flag
vote up 0 vote down

If I was permitted to comment, I would. Given this answer:

  • Flatten trees into sorted lists.
  • Merge sorted lists.
  • Create tree out of merged list.

The run-time is O((n1 + n2) + (n1 + n2)log(n1 + n2)) because you still need to build the tree even after you have a merged list, or if you use a common sorting method to sort the lists as suggested, you have a O((n1log(n1)) + n2(logn2)) expense, which factors to the same value.

Please explain to me so I understand how my calculations are wrong. Thank you.

link|flag
additionally, now that I think about it, if you build the BST from the merged, sorted list, then your BST better be self-balancing and you should be prepared for long insertion times. – San Jacinto Jun 17 at 23:47
I think that when you know how many nodes will be in the BST and you can obtain them in sorted order, you should be able to build the tree in O(N) time and not in O(N log N) time - not by adding items incrementally, of course, because you already know where each item should go. – Jonathan Leffler Jun 18 at 0:00
2  
You don't naively build the tree iteratively, by inserting the elements of the sorted array in ascending order. You build it recursively: the root element is taken from the middle of the array, and the left (right) subtree is the tree built from the subarray before (after) that element in the array. This is O(n1+n2) and the resulting tree is balanced. – Dave Hinton Jun 18 at 0:03
Thank you for a very clear explanation how how the insertion works. I see that this reduces run-time to O((n1 + n2)) for insertion, for a total run-time of O((n1 + n2) + log(n1 + n2)). Thanks again! – San Jacinto Jun 18 at 0:18
Also, you shouldn't be using a "common sorting method" - you can build the sorted lists directly from your trees. Merging the two sorted lists can also be done in O(n1+n2) time. Overall, the total complexity is O(n1+n2). – Naaff Jun 18 at 0:28
show 1 more comment
vote up 1 vote down

Naaff's answer with a little more details:

  • Flattening a BST into a sorted list is O(N)
    • It's just "in-order" iteration on the whole tree.
    • Doing it for both is O(n1+n2)
  • Merging two sorted lists is into one sorted list is O(n1+n2).
    • Keep pointers to the heads of both lists
    • Pick the smaller head and advance its pointer
    • This is how the merge of merge-sort works
  • Creating a perfectly balanced BST from a sorted list is O(N)
    • The value at the middle would be the root, and recurse.
    • In our case the sorted list is of size n1+n2. so O(n1+n2)
    • The resulting tree would be the conceptual BST of binary searching the list

Three steps of O(n1+n2) result in O(n1+n2)

For n1 and n2 of the same order of magnitude, that's better than O(n1 * log(n2))

link|flag
Sketch of proof that you can't improve on that: You need to consider each element. Between 2 adjacent values in tree 1 there might be 0,1 or more values to be found in tree 2. Just looking at N1+N2 elements already takes O(N1+N2) time. – MSalters Jun 18 at 9:09
@MSalters: according to OP you are allowed to modify one tree in-place. you don't have to look at all the elements of the tree you are modifying – yairchu Jun 18 at 11:29
vote up 0 vote down

ya i agree with the above solution

link|flag

Your Answer

Get an OpenID
or

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