下面的代码正在运行,但是在将第二个数字插入树后,程序崩溃了。为什么会这样?用户输入 1 用于插入,0 用于退出 在此先感谢...
#include<stdio.h>
#include<stdlib.h>
typedef struct ll
{
int data;
struct ll *left;
struct ll *right;
}node;
void insert(node **root,int n)
{
if((*root)==NULL)
{
(*root)=(node*)malloc(sizeof(node));
(*root)->data=n;
}
else if(((*root)->data)<n)
{
insert(&(*root)->right,n);
}
else if(((*root)->data)>n)
{
insert(&(*root)->left,n);
}
}
main()
{
node *head=NULL;int choice,n;
while(1)
{
printf("Enter 1 to insert node\n 0 to exit\n");
scanf("%d",&choice);
switch(choice)
{
case 1: printf("Enter number\n");
scanf("%d",&n);
insert(&head,n);break;
case 0:exit(0);
}
}
}