Sunday, July 12, 2009

Write a program in 'c' language to merge the contents of two binary search trees into one. Also, calculate the

Write a program in 'c' language to merge the contents of two binary search trees into one. Also, calculate the time and space complexities of your program?

Write a program in 'c' language to merge the contents of two binary search trees into one. Also, calculate the
Please sepecify what help is needed, you don't expect us to do your homework for you?


I'll start with:


the tree is from type node that decalres as:


typedef struct node {


int value;


struct node *right;


struct node *left;


} node;


No comments:

Post a Comment