A1119. 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
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int pre[], post[], N;
typedef struct NODE{
struct NODE* lchild, *rchild;
int data;
}node;
int exam(int preL, int preR, int postL, int postR){
if(preL > preR && postL > postR)
return ;
if(pre[preL] != post[postR])
return ;
int len = preR - preL;
int ans = ;
for(int i = ; i <= len; i++){
ans += exam(preL + , preL + i, postL, postL - + i) * exam(preL + i + , preR, postL + i, postR - );
}
return ans;
}
int create(int preL, int preR, int postL, int postR, node* &root){
if(preL > preR && postL > postR){
root = NULL;
return ;
}
if(pre[preL] == post[postR]){
root = new node;
root->data = pre[preL];
root->lchild = NULL;
root->rchild = NULL;
}else{
return ;
}
int ans = ;
int len = preR - preL;
for(int i = ; i <= len; i++){
ans = create(preL + , preL + i, postL, postL - + i, root->lchild) && create(preL + i + , preR, postL + i, postR - , root->rchild);
if(ans != )
return ;
}
return ans;
}
vector<int> visit;
void preOrder(node* root){
if(root == NULL)
return;
preOrder(root->lchild);
visit.push_back(root->data);
preOrder(root->rchild);
} int main(){
scanf("%d", &N);
for(int i = ; i <= N; i++){
scanf("%d", &pre[i]);
}
for(int i = ; i <= N; i++){
scanf("%d", &post[i]);
}
int ans = exam(, N, , N);
node* root = NULL;
create(, N, , N, root);
preOrder(root);
if(ans == )
printf("Yes\n");
else printf("No\n");
for(int i = ; i < visit.size(); i++){
if(i == visit.size() - )
printf("%d\n", visit[i]);
else printf("%d ", visit[i]);
}
return ;
}
总结:
1、检验的方法:使用前序、中序递归建立二叉树的方法差不多。传入前序区间和后序区间之后,由前序和后序都可以确定树根。该序列的根合法的情况有:传入区间为空(即空树); 前序确定的根和后序确定的根相同。 不合法的情况:前序与后序确定的树根不同。 然后将该序列划分为左右子树递归判断。有多种划分方法,需要循环。比如序列长为3,则可划分左右子树为(左0, 右3) (左1, 右2) (左2,右1) (左3,右0)
2、需要注意的是,只有当该树的树根合法、左子树与右子树的划分合法,才能构成合法二叉树。划分种类数:左子树个数乘右子树个数。
3、递归建树则对上面的函数稍加改造即可, 核心方法就是找到根的序号并建立新节点存储根。
A1119. Pre- and Post-order Traversals的更多相关文章
- Construct a tree from Inorder and Level order traversals
Given inorder and level-order traversals of a Binary Tree, construct the Binary Tree. Following is a ...
- [LeetCode] Rank Scores 分数排行
Write a SQL query to rank scores. If there is a tie between two scores, both should have the same ra ...
- HDU 4358 Boring counting(莫队+DFS序+离散化)
Boring counting Time Limit: 6000/3000 MS (Java/Others) Memory Limit: 98304/98304 K (Java/Others) ...
- ASP.NET MVC : Action过滤器(Filtering)
http://www.cnblogs.com/QLeelulu/archive/2008/03/21/1117092.html ASP.NET MVC : Action过滤器(Filtering) 相 ...
- HDU 1160 FatMouse's Speed
半个下午,总算A过去了 毕竟水题 好歹是自己独立思考,debug,然后2A过的 我为人人的dp算法 题意: 为了支持你的观点,你需要从给的数据中找出尽量多的数据,说明老鼠越重速度越慢这一论点 本着“指 ...
- UVA 1175 Ladies' Choice 稳定婚姻问题
题目链接: 题目 Ladies' Choice Time Limit: 6000MS Memory Limit: Unknown 64bit IO Format: %lld & %llu 问题 ...
- Spring Cloud Zuul 限流详解(附源码)(转)
在高并发的应用中,限流往往是一个绕不开的话题.本文详细探讨在Spring Cloud中如何实现限流. 在 Zuul 上实现限流是个不错的选择,只需要编写一个过滤器就可以了,关键在于如何实现限流的算法. ...
- [LeetCode] 系统刷题4_Binary Tree & Divide and Conquer
参考[LeetCode] questions conlusion_InOrder, PreOrder, PostOrder traversal 可以对binary tree进行遍历. 此处说明Divi ...
- LeetCode: Recover Binary Search Tree 解题报告
Recover Binary Search Tree Two elements of a binary search tree (BST) are swapped by mistake. Recove ...
- [LeetCode] questions conlusion_InOrder, PreOrder, PostOrder traversal
Pre: node 先, Inorder: node in, Postorder: node 最后 PreOrder Inorde ...
随机推荐
- hive字符函数
- linux audit (9)--生成audit报表
aureport这个命令可以生成一个总结性的柱状图报表,默认情况下,在/var/log/audit目录下的所有日志文件都会生成一个报表,也可以使用如下命令来指定一个不同的文件,aureport opt ...
- Yii2写日志总结
方法一 批量文件配置写入日志: 1. 首先在config.php配置文件中配置log模块 如下: 'log' => [ 'traceLevel' => YII_DEBUG ? 3 : 0, ...
- TensorFlow总结
第一 基础 1. 定义变量 #定义维度为[2,3], 平均值为·1, 标准差为1,类型为float32,名称为w1的服从正态分布的变量 w1 = tf.Variable(tf.random_norma ...
- Mysql Router 的集群
1. c:\mysql-router, c:\mysql-5.7.23, 这两个目录的bin都要加入path 2. c:\mysql-shell,在bin下,有一个 mysqlsh.exe, 双击,打 ...
- js笔记2
原型:prototype 和 __proto__ prototype 给他即将生成的对象继承下去的属性 prototype: 显式原型,每个function下都有prototype属性,该属性是一个对 ...
- case when 空值判断
在对数据库进行查询时,遇到了一个问题:查询结果中的某一列需要判断另一列是否为空的来确定值,自然就想到了case when,于是写出了下面的SQL(其他部分省略): (case date when nu ...
- Eclipse配置C++时的三个关键环境变量
ECLIPSE下载很简单,然后装上MinGW,安装就完成了,关键是要配置三个环境变量 include——C:\MinGW\include lib——C:\MinGW\lib path——C:\MinG ...
- CentOS 7 vi编辑命令
用vi打开一个yum文件 vi /usr/bin/yum 按 i 键后 进入insert模式,进入insert模式后才能进行修改 修改完成后 按esc键进入command模式, 然后:wq 保存文件 ...
- 我的Git
1.git 的安装与配置. 首先,对git进行下载.然后,在本地安装后进行版本查看,win10系统通过win+r快捷键打开控制台,然后用git --version的cmd命令查看git版本. 然后对g ...