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 ...
随机推荐
- 转《在浏览器中使用tensorflow.js进行人脸识别的JavaScript API》
作者 | Vincent Mühle 编译 | 姗姗 出品 | 人工智能头条(公众号ID:AI_Thinker) [导读]随着深度学习方法的应用,浏览器调用人脸识别技术已经得到了更广泛的应用与提升.在 ...
- 安装splash
参考: https://blog.csdn.net/qq_41020281/article/details/82599075
- python之路--触发器, 储存过程, 事务
一. 触发器 使用触发器可以定制用户对某一张表的数据进行 [增, 删 ,改] 操作时前后的行为, (注意 没有查询),在进行增删改的时候出发的某个动作叫做 触发器. 其实就是在增删改的时候另外执行了 ...
- C# DataTable 操作
添加引用 using System.Data; 创建表 //创建一个空表 DataTable dt = new DataTable(); //创建一个名为"Table_New"的空 ...
- How to vi
h:left,j:down,k:up,l:right.wq #write and quitx #cut one letterdd#cut one line/ #searchs/a/b/ #replac ...
- Pulse-per-second (PPS) Signal Interfacing
Some radio clocks and related timekeeping gear have a pulse-per-second (PPS) signal that can be used ...
- Bash 5.0 发布及其新功能
导读 邮件列表证实最近发布了 Bash-5.0.而且,令人兴奋的是它还有新的功能和变量.如果你一直在使用 Bash 4.4.XX,那么你一定会喜欢 Bash 的第五个主要版本. 第五个版本侧重于新的 ...
- C#常忘语法笔记(C#程序设计基础1-4章)
1.1 const:声明一个常量 1.2强转: double->int eg1: int i=(int)3.0; eg2: double d=3.0; int i=(int)d+1; strin ...
- Git——入门操作加创建账号【三】
创建账号 GitHub https://github.com/ 码云 https://gitee.com/ 无论是github还是码云,创建账号都是非常简单快捷的,大家可以自行选择创建下,不过建议最好 ...
- 洛谷p1091合唱队形题解
题目 合唱队形首先要满足的是从1这个位置到中间任意的位置为单增的,从中间任意的位置到最后是单减的,且长度最长.这样才能满足出列的同学最少. 如果要满足这个条件那么我们可以先预处理出每个点的从前找的最长 ...