--- In [email protected], "BIll Cunningham" <[EMAIL PROTECTED]> wrote:
>
>     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
>
It looks complete.  Are u going to add a 
pointer to data or is the integer the data?

Reply via email to