Mar 31, 2010

Tree b is the subset of Tree a

Given a node of a tree
typedef struct node
{
int info;
struct node *left,*right;
}
node;

Given the function prototype is

 bool isSubset(node *a,node *b);

Write the C code to implement the function.

No comments:

Post a Comment