题目

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

  1. dfs建树(结点左右指针表示树)
  2. bfs遍历树,并设置每个节点分层保存
  3. 锯齿形打印

思路 02

  1. dfs建树(二维数组表示树,每个数组含两个元素:左孩子节点和右孩子节点)
  2. bfs遍历树,设置每个节点的层级,并分层保存
  3. 锯齿形打印

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) [中序后序建树,层序遍历]的更多相关文章

  1. PAT甲级 1127. ZigZagging on a Tree (30)

    1127. ZigZagging on a Tree (30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue ...

  2. pat 甲级 1127. ZigZagging on a Tree (30)

    1127. ZigZagging on a Tree (30) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue ...

  3. PAT甲题题解-1127. ZigZagging on a Tree (30)-中序、后序建树

    根据中序遍历和前序遍历确定一棵二叉树,然后按“层次遍历”序列输出.输出规则:除根节点外,接下来每层的节点输出顺序是:先从左到右,再从右到左,交替输出 #include <iostream> ...

  4. PAT甲级1127. ZigZagging on a Tree

    PAT甲级1127. ZigZagging on a Tree 题意: 假设二叉树中的所有键都是不同的正整数.一个唯一的二叉树可以通过给定的一对后序和顺序遍历序列来确定.这是一个简单的标准程序,可以按 ...

  5. 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 ...

  6. PAT 甲级 1127 ZigZagging on a Tree

    https://pintia.cn/problem-sets/994805342720868352/problems/994805349394006016 Suppose that all the k ...

  7. 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 ...

  8. 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 ...

  9. PAT 1127 ZigZagging on a Tree

    Suppose that all the keys in a binary tree are distinct positive integers. A unique binary tree can ...

随机推荐

  1. 139-PHP static后期静态绑定(二)

    <?php class test{ //创建test类 public function __construct(){ static::getinfo(); //后期静态绑定 } public s ...

  2. 基于Windows平台的Python多线程及多进程学习小结

    python多线程及多进程对于不同平台有不同的工具(platform-specific tools),如os.fork仅在Unix上可用,而windows不可用,该文仅针对windows平台可用的工具 ...

  3. Elasticsearch Query DSL(查询语言)

    章节 Elasticsearch 基本概念 Elasticsearch 安装 Elasticsearch 使用集群 Elasticsearch 健康检查 Elasticsearch 列出索引 Elas ...

  4. C# Stream篇(五) -- MemoryStream

    MemoryStream 目录: 1 简单介绍一下MemoryStream 2 MemoryStream和FileStream的区别 3 通过部分源码深入了解下MemoryStream 4 分析Mem ...

  5. C语言拾遗——sscanf

    今天写题用到了sscanf,怕忘赶紧记录一下 去百度了一下这玩意的函数原型好像是长这样的,微软上扣下来的  int sscanf( const char *buffer, const char *fo ...

  6. C++基础--string转

    有时候除了要将数值型转为string外,可能也需要将一些string转为数值型,这个时候也还是可以用sstream字符串流来实现,同时也可以用C++标准库得到函数来实现. 1.字符串流 这个时候使用i ...

  7. 专题复习--背包问题+例题(HDU 2602 、POJ 2063、 POJ 1787、 UVA 674 、UVA 147)

    *注 虽然没什么人看我的博客但我还是要认认真真写给自己看 背包问题应用场景给定 n 种物品和一个背包.物品 i 的重量是 w i ,其价值为 v i ,背包的容量为C.应该如何选择装入背包中的物品,使 ...

  8. C#后台执行JavaScript

    方法一: Page.RegisterClientScriptBlock 方法 命名空間: System.Web.UI 这个方法现在已经过时.改用ClientScriptManager.Register ...

  9. UITextFeild的基本属性

    textField 基本属性   _textField.frame = CGRectMake(0, 0, 200, 50); _textField.delegate = self; _textFiel ...

  10. Codeforces 442A Borya and Hanabi

    有五种花色 外加 五种点数 共25张牌,每次有n张牌,主人知道这n张牌中有哪些牌,并且哪种牌有几张,但是不知道具体是哪张牌,他可以问某种花色,然后知道了哪几张是该花色,也可以问点数,然后就知道了哪几张 ...