Operations on binary treesmaketree
NODE_PTR maketree(int x){
NODE_PTR p;
p = (NODE_PTR)malloc(sizeof(NODE));
p->info = x;
p->left = NULL;
p->right = NULL;
return p;
}
Previous slide
Next slide
Back to first slide
View graphic version