Suppose that all the keys in a binary tree are distinct positive integers. Given the postorder and inorder traversal sequences, you are supposed to output the level order traversal sequence of the corresponding binary tree.
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 postorder sequence and the third line gives the inorder sequence. All the numbers in a line are separated by a space.
Output Specification:
For each test case, print in one line the level order traversal sequence of the corresponding binary tree. 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:
7
2 3 1 5 7 6 4
1 2 3 4 5 6 7
Sample Output:
4 1 6 3 5 7 2
题目大意
给出一棵树的后序遍历和中序遍历,将树按深度输出。
思路1
使用dfs递归遍历后序序列和中序序列,在递归遍历过程中将各个结点保存在对应的层次中,最后输出。具体细节见代码。
代码1
#include <iostream>
#include <algorithm>
#define maxN 30
#include <cstdio>
#include <vector>
using namespace std;
int post[maxN];
int in[maxN];
int n;
// 最多有maxN层
vector<int> v[maxN]

该博客介绍了一个PAT甲级编程题,要求根据给定的二叉树的后序和中序遍历序列,输出其层序遍历序列。博主提供了两种解题思路,均采用深度优先搜索(DFS)策略,并给出了相应的代码实现。样例输入和输出展示了具体的操作过程。
最低0.47元/天 解锁文章

被折叠的 条评论
为什么被折叠?



