I am writing a constructor for a binary search tree, the problem is that the helper function within the tree is being called infinitely, this eventually generates a stack overflow.
void copyTree(myTreeNode* & copy, const myTreeNode* & originalTree)
{
if(originalTree==NULL)
{
copy=NULL;
}
else
{
copy=new myTreeNode();
cout<<"This is the data my friend: "<<endl<<copy->data.getCharacter()<<endl;
copy->data=originalTree->data;
copyTree(copy->left, originalTree->getLeft());
copyTree(copy->right,originalTree->getRight());
}
}
//this is the copy constructor for the tree
myTree (const myTree & copy)
{
this->copyTree(this->root,copy.getRoot());
}
//and this is the way I have written the getLeft and getRight Functions
//they both return references to the left and rightNodes
const myTreeNode *& getLeft() const
{
const myTreeNode* ptr=NULL;
if(this->left)
{
ptr=this->left;
}
return ptr;
}
P.S the data object is not a primitive data type but it has no dynamic memory allocation.
myTreeNode::leftalways initialized toNULL? If not, you might never reach a base case becausegetLeft()never returnsNULL. I'd think a junk value would cause a segmentation fault, though. – Henry Merriam Apr 17 '11 at 21:28