0

我正在用 C++ 中的 STL 练习树的 BFS 代码,我遇到了一个无法调试的运行时错误。如果我不调用printout() function. 请帮忙,因为我是 STL 的新手..

#include<iostream>
#include<malloc.h> //on llvm we don't need this
#include<list>
using namespace std;
typedef struct Node{
int val;
struct Node* left;
struct Node* right;
}node;
void push(node** root,int val)
{
    if(!(*root))
    {
        node* temp=(node*)malloc(sizeof(node));
        temp->val=val;
        temp->right=temp->left=NULL;
        *root=temp;
    }
    else if(val<(*root)->val)
        push(&((*root)->left),val);
    else
        push(&((*root)->right),val);
}

void printout(node* head)
{
    node* temp;
    temp=head;
    list<node*>qu;

    //using bfs here
    while(temp!=NULL)
    {
        cout<<temp->val<<endl;
        if(temp->left!=NULL)
            qu.push_back(temp->left);
        if(temp->right!=NULL)
            qu.push_back(temp->right);
        temp=qu.front();
        qu.pop_front();
        //free(temp);
    }
}

int main()
{
node* root=NULL;
push(&root,3);
push(&root,4);
push(&root,1);
push(&root,10);
push(&root,2);
printout(root);
}

尽管它正在打印正确的输出但具有运行时间

3
1
4
2
10
a.out(613) malloc: *** error for object 0x7fff55ed8bc8: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
Abort trap: 6
4

2 回答 2

1

qu.front()在每次迭代中调用而不检查是否qu为空。如果它是空的 - 最后它会是 - 你的代码会中断。

最简单的解决方案是检查是否qu为空:

if (qu.empty()) {
    temp = NULL;
} else {
    temp=qu.front();
    qu.pop_front();
    //free(temp);
}

然而,这看起来很奇怪。我会完全改变循环并!qu.empty()用作循环的条件while

list<node*> qu;
qu.push_back(head);
while(!qu.empty()) {
    node* temp = qu.front();
    qu.pop_front();
    if(temp->left)
        qu.push_back(temp->left);
    if(temp->right)
        qu.push_back(temp->right);
    //free(temp);
}
于 2013-10-05T08:27:42.720 回答
1

发生的情况是,当您到达树中的最后一个“叶子”时,temp->leftand temp->rightare both NULL,您会得到一个空的 qu 列表。调用qu.front()会导致空列表上的未定义行为:http: //en.cppreference.com/w/cpp/container/list/front

您可以在致电前台之前添加尺寸检查。

于 2013-10-05T08:27:53.857 回答