1119 Pre- and Post-order Traversals

Suppose that all the keys in a binary tree are distinct positive integers. A unique binary tree can be determined by a given pair of postorder and inorder traversal sequences, or preorder and inorder traversal sequences. However, if only the postorder and preorder traversal sequences are given, the corresponding tree may no longer be unique.

Now given a pair of postorder and preorder traversal sequences, you are supposed to output the corresponding inorder traversal sequence of the tree. If the tree is not unique, simply output any one of them.

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N (≤ 30), the total number of nodes in the binary tree. The second line gives the preorder sequence and the third line gives the postorder sequence. All the numbers in a line are separated by a space.

Output Specification:

For each test case, first printf in a line Yes if the tree is unique, or No if not. Then print in the next line the inorder traversal sequence of the corresponding binary tree. If the solution is not unique, any answer would do. It is guaranteed that at least one solution exists. All the numbers in a line must be separated by exactly one space, and there must be no extra space at the end of the line.

Sample Input 1:

7
1 2 3 4 6 7 5
2 6 7 4 5 3 1
 

Sample Output 1:

Yes
2 1 6 4 7 3 5
 

Sample Input 2:

4
1 2 3 4
2 4 3 1
 

Sample Output 2:

No
2 1 3 4

题意:

  给出一棵树的前序和中序遍历的结果,判断这棵树是不是唯一,并输出中序遍历的结果。

思路:

  我们都知道用前序和中序,后序和中序可以确定一颗二叉树,这是因为在一棵子树中前序的第一个结点(或后序的最后一个结点)为根结点,根据根结点在中序中的序列,可以确定确定左子树和右子树,然后递归求解就可以找到一棵确定的二叉树。按照信息论的说法就是前序和中序(或者后序和中序)中包含整棵树的信息。但是,前序遍历和后序遍历,并没有明确的给出根结点和左右子树的关系。只给出前序遍历和后序遍历,可能存在一个结点既可以做左子树,又可以做右子树的情况。那么,这时候这棵树就是不确定的。当然有些特殊的情况,可以只通过前序和后序就可以确定一颗二叉树,那就是根结点既有左子树又有右子树,那么就不存在上面的那种不确定的情况了。也就是说前序和后序序列中所包含的信息+根结点既有左子树又有右子树这样一个特殊的信息也可以确定一棵二叉树。本题假设假设将不确定的孩子结点都放在有子树上。

Code:

 1 #include <bits/stdc++.h>
 2 
 3 using namespace std;
 4 
 5 typedef struct Node* node;
 6 
 7 struct Node {
 8     int val;
 9     node left;
10     node right;
11     Node(int v) {
12         val = v;
13         left = NULL;
14         right = NULL;
15     }
16 };
17 
18 vector<int> pre, post;
19 bool isUnique = true;
20 
21 node buildTree(int preStart, int preEnd, int postStart, int postEnd) {
22     int pos = 0, len1, len2;
23     if (preStart > preEnd || postStart > postEnd) return NULL;
24     node root = new Node(pre[preStart]);
25     for (int i = preStart; i <= preEnd; ++i) {
26         if (pre[i] == post[postEnd - 1]) {
27             pos = i;
28             break;
29         }
30     }
31     len1 = preEnd - pos + 1;    // 右子树的长度
32     len2 = pos - preStart - 1;  // 左子树的长度
33 
34     if (len1 * len2 == 0) isUnique = false;
35     if (len1 < 0 || len2 < 0) return root;
36 
37     root->left =
38         buildTree(preStart + 1, pos - 1, postStart, postEnd - len1 - 1);
39     root->right = buildTree(pos, preEnd, postStart + len2, postEnd - 1);
40 
41     return root;
42 }
43 
44 bool isFirst = true;
45 void InorderTravelTree(node root) {
46     if (root == NULL) return;
47     InorderTravelTree(root->left);
48     if (isFirst) {
49         cout << root->val;
50         isFirst = false;
51     } else {
52         cout << " " << root->val;
53     }
54     InorderTravelTree(root->right);
55 }
56 
57 int main() {
58     int n, t;
59     cin >> n;
60     for (int i = 0; i < n; ++i) {
61         cin >> t;
62         pre.push_back(t);
63     }
64     for (int i = 0; i < n; ++i) {
65         cin >> t;
66         post.push_back(t);
67     }
68     node root = buildTree(0, n - 1, 0, n - 1);
69 
70     if (isUnique)
71         cout << "Yes" << endl;
72     else
73         cout << "No" << endl;
74 
75     InorderTravelTree(root);
76     cout << endl;
77 
78     return 0;
79 }

每一组测试用例后如果不输出换行符会提示“Presentation Error”。

永远渴望,大智若愚(stay hungry, stay foolish)
原文地址:https://www.cnblogs.com/h-hkai/p/12766699.html