- 论坛徽章:
- 0
|
#include<stdio.h>
#include<stdlib.h>
struct tree
{
int data;
struct tree *left,*right;
};
typedef struct tree Tree;
Tree **bs_search(Tree **base , int key);
void insert(Tree *base, int key);
void travel(Tree *base);
Tree **bs_search(Tree **base , int key)
{
if((*base)==NULL)
return base;
if((*base)->data==key)
return NULL;
else
{
if(key>(*base)->data)
{
base=&((*base)->right);
bs_search(base,key);
}
else
{
base=&((*base)->left);
bs_search(base,key);
}
}
}
void insert(Tree *base,int key)
{
//add your code
Tree **cur=NULL;
Tree *temp=(Tree *)malloc(sizeof(Tree));
temp->data=key;
temp->left=NULL;
temp->right=NULL;
cur=bs_search(&base,key);
if(cur==NULL)
{
printf("jh");
return ;
}
if(cur!=NULL)
{
*cur=temp;
return ;
}
}
void travel(Tree *base)
{
//add your code
if(base==NULL)
return;
else
{
printf(" %d ",base->data);
travel(base->left);
travel(base->right);
}
printf("\n");
}
int main()
{
Tree *base=(Tree *)malloc(sizeof(Tree));
int a[]={2,5,7,5,1,9};
int i;
base->data=6;
base->left=NULL;
base->right=NULL;
insert(base,2);
for(i=0;i<6;i++)
{
insert(base,a[i]);
}
printf("%d",base->left);
travel(base);
return 0;
}
我按照楼主的写了一下。。不过在vc下能实现。。在gcc下也不能插入。。不知道为什么 |
|