C - 求二叉树的先序遍历

Description

已知一棵二叉树的中序遍历和后序遍历,求二叉树的先序遍历
Input

输入数据有多组,第一行是一个整数t (t<1000),代表有t组测试数据。每组包括两个长度小于50 的字符串,第一个字符串表示二叉树的中序遍历序列,第二个字符串表示二叉树的后序遍历序列。
Output

输出二叉树的先序遍历序列
Sample

Input

2
dbgeafc
dgebfca
lnixu
linux
Output

abdegcf
xnliu

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
char a[100],b[100];
struct node
{
    
    
    char data;
    struct node*lchild,*rchild;
};
struct node *creat(char *a,char*b,int len)
{
    
    
    int i;
    if(len==0)
        return NULL;
    struct node *root;
    root=(struct node*)malloc(sizeof(struct node));
    root->data=b[len-1];
    for(i=0;i<len;i++)
    {
    
    
        if(b[len-1]==a[i])
            break;
    }
    root->lchild=creat(a,b,i);
    root->rchild=creat(a+i+1,b+i,len-i-1);
    return root;
}
void front(struct node*root)
{
    
    
    if(root)
    {
    
    
        printf("%c",root->data);
        front(root->lchild);
        front(root->rchild);

    }
}
int main()
{
    
    
    int t;
    scanf("%d",&t);
    while(t--)
    {
    
    
        scanf("%s%s",a,b);
    struct node*root;
    root=(struct node*)malloc(sizeof(struct node));
    int len=strlen(a);
    root=creat(a,b,len);
    front(root);
    printf("\n");
    }

    return 0;
}

猜你喜欢

转载自blog.csdn.net/a675891/article/details/103961462