Possible Duplicate:
How i can merge two binary trees
I'm new to trees codes and I've been asked to write a code for merging two binary search trees by writing a function
void mergeBst (BST & othertree)
This function will receive another Bst and insert all non- redundant values from that tree to the current tree so can you please tell me how to do that?