Assume that I have two AVL trees and that each element from the first tree is smaller then any element from the second tree. What is the most efficient way to concatenate them into one single AVL tree? I've searched everywhere but haven't found anything useful.
|
feedback
|
|
Assuming you may destroy the input trees:
Thus, the entire operation can be performed in O(log n). Edit: On second thought, it is easier to reason about the rotations in the following algorithm. It is also quite likely faster:
| |||||||||||||||||
feedback
|
|
I suspect that you'll just have to walk one tree (hopefully the smaller) and individually add each of it's elements to the other tree. The AVL insert/delete operations are not designed to handle adding a whole subtree at a time. | |||||||||
feedback
|
|
One ultra simple solution (that works without any assumptions in the relations between the trees) is this:
Both steps are O(n). The major issue with it is that it takes O(n) extra space. | ||||
|
feedback
|