3170
Description
已知二叉树的一个按先序遍历输入的字符序列,如abc,de,g,f, (其中,表示空结点)。请建立二叉树并按中序和后序的方式遍历该二叉树。
Input
连续输入多组数据,每组数据输入一个长度小于50个字符的字符串。
Output
每组输入数据对应输出2行:
第1行输出中序遍历序列;
第2行输出后序遍历序列。
Sample
Input
abc,de,g,f,
Output
cbegdfa
cgefdba
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include<malloc.h>
typedef struct node
{
struct node *l,*r;
char data;
} node,*Tree;
int k;
char s[100],ch;
void Creat(Tree&T)
{
ch = s[k++];
if(ch == ',')
T = NULL;
else
{
T = (node*)malloc(sizeof(node));
T->data = ch;
Creat(T->l);
Creat(T->r);
}
}
void zhongxu(Tree&T)
{
if(T)
{
zhongxu(T->l);
printf("%c",T->data);
zhongxu(T->r);
}
}
void houxu(Tree&T)
{
if(T)
{
houxu(T->l);
houxu(T->r);
printf("%c",T->data);
}
}
int main()
{
Tree T;
while(gets(s))
{
k = 0;
Creat(T);
zhongxu(T);
printf("\n");
houxu(T);
printf("\n");
}
return 0;
}