习题6-3 UVA 536 Tree Recovery 二叉树重建

这个题类似于例题6-8

给你先序遍历,中序遍历,求后序遍历,直接模仿例题6-8写就行了

写个build函数。先序遍历第一个字符就是根,然后再中序遍历中找到根,不断的递归,递归完成输出即可!

先build 左,在build 右,这样就默认成了后序遍历 输出即可!


代码如下:

#include<cstdio>
#include<cstring>
const int maxn = 30;
char s1[maxn],s2[maxn];
void build(int L1,int R1,int L2,int R2){
    if (L1 > R1)return;
    char ch = s1[L1];
    int p = L2;
    while(s2[p] != ch)++p;
    int cnt=p-L2;
    build(L1+1,L1+cnt,L2,p-1);
    build(L1+cnt+1,R1,p+1,R2);
    printf("%c",ch);
}
int main()
{
    while(scanf("%s%s",s1,s2) == 2){
        int len1 = strlen(s1);
        int len2 = strlen(s2);
        build(0,len1-1,0,len2-2);
        printf("\n");
    }
    return 0;
}


你可能感兴趣的:(递归,二叉树,遍历,C语言,uva)