UVa 536 Tree Recovery(二叉树后序遍历)

Little Valentine liked playing with binary trees very much. Her favorite game was constructing randomly looking binary trees with capital letters in the nodes.
This is an example of one of her creations:
                                               D
                                              /  
                                             /    
                                            B     E
                                           /      
                                          /        
                                         A     C     G
                                                       /
                                                     /
                                                   F
To record her trees for future generations, she wrote down two strings for each tree: a preorder traversal (root, left subtree, right subtree) and an inorder traversal (left subtree, root, right subtree). For the tree drawn above the preorder traversal is DBACEGF and the inorder traversal is ABCDEFG.
She thought that such a pair of strings would give enough information to reconstruct the tree later (but she never tried it).

Now, years later, looking again at the strings, she realized that reconstructing the trees was indeed possible, but only because she never had used the same letter twice in the same tree.
However, doing the reconstruction by hand, soon turned out to be tedious.
So now she asks you to write a program that does the job for her!

Input
The input will contain one or more test cases.
Each test case consists of one line containing two strings preord and inord, representing the preorder traversal and inorder traversal of a binary tree. Both strings consist of unique capital letters. (Thus they are not longer than 26 characters.)
Input is terminated by end of file.

Output
For each test case, recover Valentine's binary tree and print one line containing the tree's postorder traversal (left subtree, right subtree, root).

Sample Input
DBACEGF ABCDEFG
BCAD CBAD

Sample Output
ACBFGED
CDAB

题意

已知先序和中序,求后序

题解

这题是处理字符,跟处理数字类似,改一点点

代码

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 char Per[50],In[50];
 4 int Left[50],Right[50];
 5 int rebuild(int L1,int R1,int L2,int R2)
 6 {
 7     if(L1>R1)return 0;
 8     int root=Per[L1]-'A'+1;
 9     int p=L2;
10     while(In[p]-'A'+1!=root)p++;
11     int cnt=p-L2;
12     Left[root]=rebuild(L1+1,L1+cnt,L2,p-1);
13     Right[root]=rebuild(L1+cnt+1,R1,p+1,R2);
14     return root;
15 }
16 void dfs(int u)
17 {
18     //printf("%c",u+'A'-1);//先序
19     if(Left[u]!=0)
20         dfs(Left[u]);
21     //printf("%c",u+'A'-1);//中序
22     if(Right[u]!=0)
23         dfs(Right[u]);
24     printf("%c",u+'A'-1);//后序
25 }
26 int main()
27 {
28     //freopen("in.txt","r",stdin);
29     while(scanf("%s%s",Per,In)!=EOF)
30     {
31         memset(Left,0,sizeof(Left));
32         memset(Right,0,sizeof(Right));
33         int n=strlen(Per);
34         rebuild(0,n-1,0,n-1);
35         dfs(Per[0]-'A'+1);
36         printf("
");
37     }
38     return 0;
39 }