0

我改编了这本书中的代码:Mark Allen Weiss 的 Data Structures and Algorithms,第 3 版。

每次我运行它,它都会崩溃。根据要求,我将添加整个二叉树代码(很长)。每当我尝试在调试模式下运行它时,我最终都会在remove()函数中的前三个 if else 语句之间循环,然后我最终得到这个输出:

“项目 4Draft.exe 中 0x0007300d 处未处理的异常:0xC0000005:访问冲突读取位置 0x003c0000。”

我很确定这是一个段错误,只是试图找到源。另外,当我运行它时,它不会进入findMin(),但我将它包含在内,因为它在删除中,并且尚未完全测试。谁能帮我推导来源?

这是删除功能:

void remove(const T& x, TreeNode * & tn) const {
    if(tn == NULL)
        return;
    else if(x < tn->data)
        remove(x, tn->left);
    else if(tn->data < x)
        remove(x, tn->right);
    else if(tn->left != NULL && tn->right != NULL) {//Two Children(Swap the min of the right subtree, and swap
        tn->data = findMin(tn->right)->data;
        remove(tn->data,tn->right);
    }
    else{
        TreeNode *oldNode = tn;
        tn = (tn->left != NULL ) ? tn->left : tn->right;
        delete oldNode;
    }

}

这里是 findMin():

TreeNode * findMin(TreeNode *x) const {
        if(debugMode==true){
        cout << "\nWERE IN FINDMIN\n";
        }
        if(x==NULL){
            return NULL;
        }
        if(x->left==NULL){
            if(debugMode==true){
            cout << x;
            }
            return x;
        }

        return findMin(x->left);
    };

这是我在测试文件中所说的:

cout << "Checking remove()\n";
    for(int i =SIZE; i>0;i++){
        z.remove(x[i]);
    }
    cout << "DONE Checking remove()\n";
4

1 回答 1

5

你确定你的循环条件是正确的吗?

for(int i =SIZE; i>0;i++){
    z.remove(x[i]);
}
cout << "DONE Checking remove()\n";

也许你应该写这样的东西:

for(int i = 0; i < SIZE; i++){
    z.remove(x[i]);
}

或者

for(int i = SIZE - 1; i >= 0; i--){
    z.remove(x[i]);
}
于 2013-11-01T20:39:04.547 回答