POJ2255(二叉树遍历)

Tree Recovery
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 13000   Accepted: 8112

Description

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

Source

 
题意:一直二叉树先序遍历和中序遍历求后序遍历
 
/*
ID: LinKArftc
PROG: 2255.cpp
LANG: C++
*/

#include <map>
#include <set>
#include <cmath>
#include <stack>
#include <queue>
#include <vector>
#include <cstdio>
#include <string>
#include <utility>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
#define eps 1e-8
#define randin srand((unsigned int)time(NULL))
#define input freopen("input.txt","r",stdin)
#define debug(s) cout << "s = " << s << endl;
#define outstars cout << "*************" << endl;
const double PI = acos(-1.0);
const double e = exp(1.0);
const int inf = 0x3f3f3f3f;
const int INF = 0x7fffffff;
typedef long long ll;

const int maxn = 30;

char str[maxn];
int cur;

void build(char *str1, char *str2, int len) {
    if (len <= 0) return;
    int pos = strchr(str2, str1[0]) - str2;
    build(str1 + 1, str2, pos);
    build(str1 + pos + 1, str2 + pos + 1, len - pos - 1);
    printf("%c", str1[0]);
}

char str1[maxn], str2[maxn];

int main() {
    while (~scanf("%s %s", str1, str2)) {
        cur = 0;
        build(str1, str2, strlen(str1));
        printf("
");
    }

    return 0;
}
原文地址:https://www.cnblogs.com/LinKArftc/p/4960002.html