PAT A1147 Heaps (30分) (堆的判定)
条评论PAT甲级:A1147 Heaps (30分)
In computer science, a heap is a specialized tree-based data structure that satisfies the heap property: if P is a parent node of C, then the key (the value) of P is either greater than or equal to (in a max heap) or less than or equal to (in a min heap) the key of C. A common implementation of a heap is the binary heap, in which the tree is a complete binary tree. (Quoted from Wikipedia at https://en.wikipedia.org/wiki/Heap_(data_structure))
Your job is to tell if a given complete binary tree is a heap.
Input Specification:
Each input file contains one test case. For each case, the first line gives two positive integers: M (≤ 100), the number of trees to be tested; and N (1 < N ≤ 1,000), the number of keys in each tree, respectively. Then M lines follow, each contains N distinct integer keys (all in the range of int), which gives the level order traversal sequence of a complete binary tree.
Output Specification:
For each given tree, print in a line Max Heap
if it is a max heap, or Min Heap
for a min heap, or Not Heap
if it is not a heap at all. Then in the next line print the tree’s postorder traversal sequence. All the numbers are separated by a space, and there must no extra space at the beginning or the end of the line.
Sample Input:
1 | 3 8 |
Sample Output:
1 | Max Heap |
- 题意:给出一颗完全二叉树顺序存储的序列,判断这棵树是大顶堆、小顶堆或不是堆,之后输出这完全二叉树的后序遍历序列。
- 分析:因为是完全二叉树且是顺序存储的方式,所以从下标为1的位置开始依次读入到heap数组中,之后设定
isMaxHeap
、isMinHeap
两变量,从下标为2的结点开始,遍历该数组,当前结点编号 i 除以2就是父结点编号,如果孩子结点值大于父结点值则一定不是大顶堆,将isMaxHeap
标记为 false,小顶堆同理。最后递归输出后序遍历序列。
注意:输出后序遍历序列最后不能有多余空格,因此设置全局变量cnt
判断是否输出空格。
1 |
|
- 本文链接:https://blog.charjin.top/2020/02/24/pat-A1147/
- 版权声明:本博客所有文章除特别声明外,均采用 CC BY-NC-SA 3.0 CN 许可协议。转载请注明出处!
分享