//
#include
#include
#define MaxSize 100
typedef char ElemType;
typedef struct node
{
ElemType data; //
struct node *lchild; //
struct node *rchild; //
} BTNode;
void CreateBTree(BTNode * &b,char *str) //
{
BTNode *St[MaxSize],*p=NULL;
int top=-1,k,j=0;
char ch;
b=NULL; //
ch=str[j];
while (ch!='\0') //str
{
switch(ch)
{
case '(':top++;St[top]=p;k=1; break; //
case ')':top--;break;
case ',':k=2; break; //
default:p=(BTNode *)malloc(sizeof(BTNode));
p->data=ch;p->lchild=p->rchild=NULL;
if (b==NULL) //*p
b=p;
else //
{
switch(k)
{
case 1:St[top]->lchild=p;break;
case 2:St[top]->rchild=p;break;
}
}
}
j++;
ch=str[j];
}
}
void DestroyBTree(BTNode *&b) //
{ if (b!=NULL)
{ DestroyBTree(b->lchild);
DestroyBTree(b->rchild);
free(b);
}
}
BTNode *FindNode(BTNode *b,ElemType x) // x
{
BTNode *p;
if (b==NULL)
return NULL;
else if (b->data==x)
return b;
else
{
p=FindNode(b->lchild,x);
if (p!=NULL)
return p;
else
return FindNode(b->rchild,x);
}
}
BTNode *LchildNode(BTNode *p)
{
return p->lchild;
}
BTNode *RchildNode(BTNode *p)
{
return p->rchild;
}
int BTHeight(BTNode *b) // b
{
int lchildh,rchildh;
if (b==NULL) return(0); // 0
else
{
lchildh=BTHeight(b->lchild); // lchildh
rchildh=BTHeight(b->rchild); // rchildh
return (lchildh>rchildh)? (lchildh+1):(rchildh+1);
}
}
void DispBTree(BTNode *b) //
{
if (b!=NULL)
{ printf("%c",b->data);
if (b->lchild!=NULL || b->rchild!=NULL)
{ printf("("); // (
DispBTree(b->lchild); //
if (b->rchild!=NULL) printf(","); // ,
DispBTree(b->rchild); //
printf(")"); // )
}
}
}
int main()
{ BTNode *b,*p,*lp,*rp;;
printf(" :
");
printf(" (1)
");
CreateBTree(b,"A(B(D,E(H(J,K(L,M(,N))))),C(F,G(,I)))");
printf(" (2) :");DispBTree(b);printf("
");
printf(" (3)H :");
p=FindNode(b,'H');
if (p!=NULL)
{ lp=LchildNode(p);
if (lp!=NULL)
printf(" %c ",lp->data);
else
printf(" ");
rp=RchildNode(p);
if (rp!=NULL)
printf(" %c",rp->data);
else
printf(" ");
}
printf("
");
printf(" (4) b :%d
",BTHeight(b));
printf(" (5) b
");
DestroyBTree(b);
return 1;
}