我在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
答案 0 :(得分: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);
}
答案 1 :(得分:1)
当你到达树中的最后一个“叶子”时,temp->left
和temp->right
都是NULL
,你得到一个空的qu列表。
调用qu.front()
会在空列表中导致未定义的行为:http://en.cppreference.com/w/cpp/container/list/front
您可以在致电前方之前添加尺寸检查。