We're writing useful classes in my computer science class, and mine was for a pantry inventory. It seemed to me it would be simplest to keep a structure in Private and use an object (also really a ...
Okay, basically, I have a struct:<BR><BR>struct node{<BR> struct node * left;<BR> struct node * right;<BR> int value;<BR>} Node;<BR><BR>From this struct, I am trying ...