我正在编写一个代码来测试两个二叉搜索树是否相等。
但是,每当我释放内存时,我都会遇到访问冲突错误。通过它,我看到我正在我的释放函数上访问内存地址 0xfeefee。我在 Cell 析构函数中遇到访问冲突。
另外我真的不知道这个功能是否有效,但是我并没有真正寻求帮助——尽管仍然会受到帮助。
释放函数:
~Cell(void) {
if (left) { delete left; }
if (right) { delete right; }
}
功能:
bool BST::isEqualTo(const BST& that) const{
if(root <= 0 && that.root <= 0){
return true;
}else if(root <= 0 || that.root <= 0){
return false;
}
if(root->val != that.root->val){
false;
}
/*Cell* saved_node1 = new Cell(*root);
Cell* saved_node2 = new Cell(*that.root);*/
BST a, b, c, d;
a.root = root->left;
b.root = that.root->left;
c.root = root->right;
d.root = that.root->right;
if(a.isEqualTo(b) && c.isEqualTo(d)){
/*a.root = saved_node1;
b.root = saved_node2;
c.root = saved_node1;
d.root = saved_node2;*/
return true;
}
return false;
}
树析构函数:
void BST::destroy(void) {
length = 0;
delete root;
root = nullptr;
}