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;
}