二叉树遍历

数据结构实验之二叉树二:遍历二叉树

Time Limit: 1000MS Memory limit: 65536K

题目描述

已知二叉树的一个按先序遍历输入的字符序列,如abc,,de,g,,f,,, (其中,表示空结点)。请建立二叉树并按中序和后序的方式遍历该二叉树。

输入

连续输入多组数据,每组数据输入一个长度小于50个字符的字符串。

输出

每组输入数据对应输出2行:
第1行输出中序遍历序列;
第2行输出后序遍历序列。

 

示例输入

abc,,de,g,,f,,,

示例输出

cbegdfacgefdba




#include
#include
#include
#include
char q[100];int i;
struct node
{
    char data;
    struct node *l,*r;
};
struct node *creat(struct node *p)
{


    if(q[i++]==',')
     p=NULL;
    else
    {
        p=(struct node *)malloc(sizeof(struct node));
        p->data=q[i-1];
        p->l=creat(p->l);
        p->r=creat(p->r);
    }
    return p;
}
int zhongxu(struct node *p)
{
    if(p)
    {
        zhongxu(p->l);
        printf("%c",p->data);
        zhongxu(p->r);
    }
    return 0;
}


int houxu(struct node *p)
{
    if(p)
    {
        houxu(p->l);
        houxu(p->r);
        printf("%c",p->data);
    }
    return 0;
}
int main()
{


   while(scanf("%s",q)!=EOF)
    {i=0;
        struct node *head;
        head = (struct node *)malloc(sizeof(struct node));
        head = creat(head);
        zhongxu(head);
       printf("\n");
       houxu(head);
        printf("\n");
    }
    return 0;
}

你可能感兴趣的:(二叉树遍历)