作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
#include<stdio.h>
#include<stdlib.h>
struct node{
int data;
struct node* leftchild;
struct node* rightchild;
};
struct node* newnode(int data)
{
struct node* node=malloc(sizeof(struct node));
node->data=data;
node->leftchild=NULL;
node->rightchild=NULL;
return node;
}
int height(struct node* root)
{
int lheight,rheight;
if(root==NULL)
return 0;
else
{
lheight=height(root->leftchild);
rheight=height(root->rightchild);
}
if(lheight>rheight)
return lheight+1;
else
return rheight+1;
}
void printlevelorder(struct node* root,int current,int level)
{
if(current==level)
{
printf("%d ",root->data);
return;
}
else
{
printlevelorder(root->leftchild,current+1,level);
printlevelorder(root->rightchild,current+1,level);
}
}
void levelorder(struct node* root)
{
int h,i;
h= height(root);
if(h!=0){
for(i=1;i<=h;i++)
{
printlevelorder(root,1,i);
}
}
else
printf("Tree not exist\n");
}
int main()
{
struct node* root=newnode(1);
root->leftchild=newnode(2);
root->rightchild=newnode(7);
root->leftchild->leftchild=newnode(3);
root->leftchild->rightchild=newnode(6);
root->leftchild->leftchild->leftchild=newnode(4);
root->leftchild->leftchild->leftchild->rightchild=newnode(5);
root->rightchild->leftchild=newnode(9);
root->rightchild->rightchild=newnode(8);
levelorder(root);
return 0;
}
最佳答案
当 current
是树的最大高度(在您的情况下为 5)时,您将停止递归调用 printlevelorder
函数。由于root
的右子树的高度小于5,当current
足够大时,当你遍历该子树时,你会遇到段错误。更好的解决方案是在遇到 NULL
节点时停止递归调用,而不是检查 current
何时达到 5。
关于c - 二叉树的层序遍历中出现运行时错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38953060/
我是一名优秀的程序员,十分优秀!