zoukankan      html  css  js  c++  java
  • 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 }
  • 相关阅读:
    leetcode 110 Balanced Binary Tree
    Spark编程模型
    Spark1.4从HDFS读取文件运行Java语言WordCounts并将结果保存至HDFS
    __x__(27)0907第四天__ float 浮动
    __x__(26)0907第四天__文档流_网页最底层
    __x__(25)0907第四天__ overflow 父元素对溢出内容的处理
    __x__(24)0907第四天__ display 和 visibility
    __x__(23)0907第四天__浏览器默认样式
    __x__(22)0907第四天__ 垂直外边距重叠
    __x__(21)0907第四天__ css 盒模型 (框模型)
  • 原文地址:https://www.cnblogs.com/taozi1115402474/p/8476169.html
Copyright © 2011-2022 走看看