例如:
前序遍历:ABD$CE
中序遍历:DB$AEC
求得:
后序遍历:D$BECA
$表示空
[此贴子已经被作者于2006-5-21 13:10:04编辑过]
这样可以吧
# include <stdio.h>
# include <stdlib.h>
struct btnode
{
int data,y;
struct btnode *lchild,*rchild;
};
struct btnode *CreateTree(struct btnode *bt,int c[],int x,int b[])
{
struct btnode *p1,*p2,*q;
int i,j,k;
p1=bt;
for(j=0;j<x;j++)
{
q=(struct btnode *)malloc(sizeof(struct btnode));
q->data=b[c[j]];q->y=c[j]; q->lchild=q->rchild=NULL;
p1=bt;
if(p1==NULL) bt=p1=q;
else
{
while(p1)
{
p2=p1;
if(c[j]<p1->y)
{p1=p2->lchild;k=1;}
else
{p1=p2->rchild;k=0;}
}
if(k==1) p2->lchild=q;
else p2->rchild=q;
}
}
return(bt);
}
void bianli1(struct btnode *t) /* 递归先序遍历 */
{
if (t!=0)
{printf("%d ",t->data);
bianli1(t->lchild);
bianli1(t->rchild);
}
return;
}
void bianli2(struct btnode *t) /* 递归后序遍历 */
{
if (t!=0)
{
bianli2(t->lchild);
bianli2(t->rchild);
printf("%d ",t->data);
}
free(t);
return;
}
main()
{
int a[7]={1,2,4,5,3,6,7}, b[7]={4,2,5,1,6,3,7}, c[7];
int i,j,x,k;
struct btnode *bt=NULL;
for(i=0;i<7;i++)
{
for(j=0;j<7;j++)
if(a[i]==b[j])
{
k=j;
break;
}
c[i]=k;
}
bt=CreateTree(bt,c,7,b);
bianli1(bt);
printf("\n");
bianli2(bt);
getch();
}
不知道楼主有没有奖励