PAT Advanced 1127 ZigZagging on a Tree (30) [中序后序建树,层序遍历]
题目
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. And it is a simple standard routine to print the numbers in level-order. However, if you think the problem is too simple, then you are too naive. This time you are supposed to print the numbers in “zigzagging order” — that is, starting from the root, print the numbers level-by-level, alternating between lef to right and right to lef. For example, for the following tree you must output: 1 11 5 8 17 12 20 15.
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 inorder 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, print the zigzagging sequence of the tree in a line. 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:
8
12 11 20 17 1 15 8 5
12 20 17 11 15 8 5 1
Sample Output:
1 11 5 8 17 12 20 15
题目分析
已知中序序列和后序序列,打印锯齿形序列(奇数层正序,偶数层倒序)
解题思路
思路 01
- dfs建树(结点左右指针表示树)
- bfs遍历树,并设置每个节点分层保存
- 锯齿形打印
思路 02
- dfs建树(二维数组表示树,每个数组含两个元素:左孩子节点和右孩子节点)
- bfs遍历树,设置每个节点的层级,并分层保存
- 锯齿形打印
Code
Code 01
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
const int maxn=30;
int n,pre[maxn],in[maxn],post[maxn];
struct node {
int data;
node * left;
node * right;
int depth;
};
vector<node*> result[30];
node * create(int inL,int inR,int postL,int postR) {
if(inL>inR)return NULL;
node * root = new node;
root->data=post[postR];
int k=inL;
while(k<inR&&in[k]!=post[postR])k++;
root->left=create(inL,k-1,postL,postR-(inR-k)-1);
root->right=create(k+1,inR,postR-(inR-k),postR-1);
return root;
}
void dfs(node * root) {
queue<node*> q;
root->depth=0;
q.push(root);
while(!q.empty()) {
node * now = q.front();
q.pop();
result[now->depth].push_back(now);
if(now->left!=NULL) {
now->left->depth=now->depth+1;
q.push(now->left);
}
if(now->right!=NULL) {
now->right->depth=now->depth+1;
q.push(now->right);
}
}
}
int main(int argc, char * argv[]) {
scanf("%d",&n);
for(int i=0; i<n; i++)scanf("%d",&in[i]);
for(int i=0; i<n; i++)scanf("%d",&post[i]);
node * root = create(0,n-1,0,n-1);
dfs(root);
printf("%d",result[0][0]->data);
for(int i=1;i<30;i++){
if(i%2==1){
for(int j=0;j<result[i].size();j++){
printf(" %d",result[i][j]->data);
}
}else{
for(int j=result[i].size()-1;j>=0;j--){
printf(" %d",result[i][j]->data);
}
}
}
return 0;
}
Code 02
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
struct node {
int index;
int depth;
};
int n,tree[31][2],root;
vector<int> in,post,result[31];
void dfs(int &index, int inL, int inR, int postL, int postR) {
if(inL>inR)return;
index = postR; //当前root
//在中序序列中查找当前root
int k=inL;
while(k<inR&&in[k]!=post[postR])k++;
dfs(tree[index][0], inL, k-1, postL, postL+(k-inL)-1);
dfs(tree[index][1], k+1, inR, postL+(k-inL), postR-1);
}
void bfs() {
queue<node> q;
q.push(node {root,0});
while(!q.empty()) {
node temp = q.front();
q.pop();
result[temp.depth].push_back(post[temp.index]);
if(tree[temp.index][0]!=0)q.push(node{tree[temp.index][0],temp.depth+1});
if(tree[temp.index][1]!=0)q.push(node{tree[temp.index][1],temp.depth+1});
}
}
int main(int argc,char * argv[]) {
scanf("%d",&n);
in.resize(n+1),post.resize(n+1);
for(int i=1; i<=n; i++)scanf("%d",&in[i]);
for(int i=1; i<=n; i++)scanf("%d",&post[i]);
dfs(root,1,n,1,n);
bfs();
printf("%d",result[0][0]);
for(int i=1;i<31;i++){
if(i%2==1){
// 奇数行,正序
for(int j=0;j<result[i].size();j++){
printf(" %d",result[i][j]);
}
}else{
// 偶数行,逆序
for(int j=result[i].size()-1;j>=0;j--){
printf(" %d",result[i][j]);
}
}
}
return 0;
}
PAT Advanced 1127 ZigZagging on a Tree (30) [中序后序建树,层序遍历]的更多相关文章
- PAT甲级 1127. ZigZagging on a Tree (30)
1127. ZigZagging on a Tree (30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue ...
- pat 甲级 1127. ZigZagging on a Tree (30)
1127. ZigZagging on a Tree (30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue ...
- PAT甲题题解-1127. ZigZagging on a Tree (30)-中序、后序建树
根据中序遍历和前序遍历确定一棵二叉树,然后按“层次遍历”序列输出.输出规则:除根节点外,接下来每层的节点输出顺序是:先从左到右,再从右到左,交替输出 #include <iostream> ...
- PAT甲级1127. ZigZagging on a Tree
PAT甲级1127. ZigZagging on a Tree 题意: 假设二叉树中的所有键都是不同的正整数.一个唯一的二叉树可以通过给定的一对后序和顺序遍历序列来确定.这是一个简单的标准程序,可以按 ...
- PAT Advanced 1064 Complete Binary Search Tree (30) [⼆叉查找树BST]
题目 A Binary Search Tree (BST) is recursively defined as a binary tree which has the following proper ...
- PAT 甲级 1127 ZigZagging on a Tree
https://pintia.cn/problem-sets/994805342720868352/problems/994805349394006016 Suppose that all the k ...
- 1127 ZigZagging on a Tree (30 分)
1127 ZigZagging on a Tree (30 分) Suppose that all the keys in a binary tree are distinct positive in ...
- PAT 1127 ZigZagging on a Tree[难]
1127 ZigZagging on a Tree (30 分) Suppose that all the keys in a binary tree are distinct positive in ...
- PAT 1127 ZigZagging on a Tree
Suppose that all the keys in a binary tree are distinct positive integers. A unique binary tree can ...
随机推荐
- 079-PHP数组排序,两次循环法封装成函数
<?php function mysort($arr){ //将排序的代码封装为函数 echo '<br />数组排序之前的信息:<br />'; print_r($ar ...
- JQuery 多属性选择节点
JQuery 1.6.0+以后用prop()代替attr(); 多属性选择节点 $("input[type=checkbox][name='first2'][value='first4']& ...
- ubuntu18.04 基于Hadoop3.1.2集群的Hbase2.0.6集群搭建
前置条件: 之前已经搭好了带有HDFS, MapReduce,Yarn 的 Hadoop 集群 链接: ubuntu18.04.2 hadoop3.1.2+zookeeper3.5.5高可用完全分布式 ...
- P 1032 挖掘机技术哪家强
转跳点:
- UVA - 10689 Yet another Number Sequence (矩阵快速幂求斐波那契)
题意:已知f(0) = a,f(1) = b,f(n) = f(n − 1) + f(n − 2), n > 1,求f(n)的后m位数. 分析:n最大为109,矩阵快速幂求解,复杂度log2(1 ...
- 微服务中一个项目install打包总是失败
在微服务的一个项目中install打包时总是报错如下: [INFO] Scanning for projects... [INFO] [INFO] -------------------------- ...
- Struts1 的配置文件总结
一.在web.xml中安装Struts 要想使用Struts,我们接触到的第一个配置文件就是web.xml.实际上,Struts的入口点是一个名为ActionServlet的Servlet.在第一次访 ...
- BGP(IBGP“内部路由器”和EBGP“外部路由器”)命令解析
BGP:基于策略的路径向量路由协议. ①:(attribute)属性描述路径. ②:使用TCP(端口179)作为传输协议——(IBGP多使用loopback端口建立update-source) IBG ...
- js 月份选择器(只选择到月)
需要如下js https://pan.baidu.com/s/1c1T9wY0 在html中添加如下代码 <input onclick="setmonth(this)" /& ...
- n以内的素数
/* 问题描述: 质数又称素数.一个大于1的自然数,除了1和它自身外, 不能被其他自然数整除的数叫做质数: 问题分析: 素数只能被1和自身整除的数.判断一个数是不是素数, 是用2和这个数之间的所有的数 ...