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 left to right and right to left. 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 1
2
38
12 11 20 17 1 15 8 5
12 20 17 11 15 8 5 1
Sample Output 1
1 11 5 8 17 12 20 15
Algorithm:
树:根据树的中序与后序遍历构建树并以z字形层次输出
Learn:
0、可以不用构建树就可以输出,学会考虑在构建的过程中多做点文章
code
首先是构建树后再z字形层次打印树,多次一举代码也比较冗余:
1 |
|
因为在根据后序和中序构建的过程中的递归刚好是顺序的,所以可以在构建的时候直接根据深度把他保存在一个数组中就好。
1 |
|