Assign left/right tag to nodes in the binary-tree -
i have binary (undirected) tree. want assign each (child) node left/right tag.
how can it? thanks
you in c making tree structure
struct tree { char tag[4]; struct tree * left; struct tree *right; };
Comments
Post a Comment