Confused.. Given the node below, how would you go about proving a particular instance of structure did not contain cycles???
class Tree_Node
{
void * data;
Tree_Node *right, *left;
}
This is a discussion on Tree qtion...help pls asap!!! within the C++ Programming forums, part of the General Programming Boards category; Confused.. Given the node below, how would you go about proving a particular instance of structure did not contain cycles??? ...
Confused.. Given the node below, how would you go about proving a particular instance of structure did not contain cycles???
class Tree_Node
{
void * data;
Tree_Node *right, *left;
}