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

Reply via email to