Does this look correct?
struct Tree{
int count; /* For the node number */
Tree* pleftchild; /* pointer to left child */
Tree* prightchild; /* pointer to right child */
};Does this complete the tree or node structure? Bill
Does this look correct?
struct Tree{
int count; /* For the node number */
Tree* pleftchild; /* pointer to left child */
Tree* prightchild; /* pointer to right child */
};Does this complete the tree or node structure? Bill