原文链接:我的个人博客
原题链接
PAT 1127 ZigZagging on a Tree (30分)
考点
树,树的遍历
思路
给定树的中序和后序序列,要求按Z字形层次输出,偶数层从右往左,奇数层从左往右遍历。
1. 根据中序和后序序列建树
2. tree用来存放树的结构。tree[index][0]
和tree[index][1]
分别表示,在后序序列post中下标为index的左右子树的下标
3. 利用bfs,广度优先遍历,记录每一层的节点编号
4. 最后在主函数中,根据奇偶性,从左到右或者从右到左输出
代码
#include <iostream>
#include <vector>
#include <queue>
using namespace std;
vector<int> in, post, result[35];
int n, tree[35][2], root;
struct node {
int index, depth;
};
void dfs(int &index, int inLeft, int inRight, int postLeft, int postRight) {
if (inLeft > inRight) return;
index = postRight;
int i = 0;
while (in[i] != post[postRight]) i++;
dfs(tree[index][0], inLeft, i - 1, postLeft, postLeft + (i - inLeft) - 1);
dfs(tree[index][1], i + 1, inRight, postLeft + (i - inLeft), postRight - 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() {
cin >> n;
in.resize(n + 1), post.resize(n + 1);
for (int i = 1; i <= n; i++) cin >> in[i];
for (int i = 1; i <= n; i++) cin >> post[i];
dfs(root, 1, n, 1, n);
bfs();
printf("%d", result[0][0]);
for (int i = 1; i < 35; 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;
}