PAT 1147 Heaps[难]
1147 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:
3 8
98 72 86 60 65 12 23 50
8 38 25 58 52 82 70 60
10 28 15 12 34 9 8 56
Sample Output:
Max Heap
50 60 65 72 12 23 86 98
Min Heap
60 58 52 38 82 70 25 8
Not Heap
56 12 34 28 9 8 15 10
题目大意:输入几组完全二叉树的层次遍历序列,判断它是最大堆、最小堆、还是啥都不是。树中节点数N<=1000
//如果只判断是不是堆,完全不用建树,因为是完全二叉树可以利用数组下标,左子树下标为2*i,右子树是2*i+1。然而最终都要给出来后根遍历,所以建树再后根遍历还是比较方便的。
//怎么根据层次遍历建树呢?不会也。。。
#include <iostream>
#include <string>
#include <vector>
#include<cstdio>
using namespace std;
int main() {
int k,n;
cin>>k>>n;
while(k--){
vector<int> tree(n+);
for(int i=;i<=n;i++){
cin>>tree[i];
}
bool flag=true;
for(int i=;*i<=n||*i+<=n;i++){//判断是否是最大堆
if(tree[i]>=tree[*i]&&tree[i]>=tree[*i+])continue;
else{
flag=false;break;
}
}
if(flag)cout<<"Max Heap\n";
else{
flag=true;
for(int i=;*i<=n||*i+<=n;i++){
if(tree[i]<=tree[*i]&&tree[i]<=tree[*i+])continue;
else{
flag=false;break;
}
}
if(flag)cout<<"Min Heap\n";
else cout<<"Not Heap\n";
}
} return ;
}
写出的这个代码在运行样例的时候,出现了以下问题:

第二个最小堆,判断不是最小堆,突然发现是因为代码里,寻址了不存在的单元!这样的话那个单元是一个很大的负值,那么最大堆当然是可以判断了,但是最小堆就出现了问题!
//那如果那样去判断的话,可就是很复杂了。。。放弃。
//看到大佬28行的代码,内心是震惊的。。
代码来自:https://www.liuchuo.net/archives/4667
#include <iostream>
#include <vector>
using namespace std;
int m, n;
vector<int> v;
void postOrder(int index) {//原来可以根据下标遍历完全二叉树啊!
if (index >= n) return;
postOrder(index * + );
postOrder(index * + );//就算index * 2 + 2那么就会return,正好是递归出口。
printf("%d%s", v[index], index == ? "\n" : " ");
//如果遍历到最终根节点即index=0,那么
}
int main() {
scanf("%d%d", &m, &n);
v.resize(n);//其实完全可以只用一个向量,因为新输入的会将原来的覆盖。
for (int i = ; i < m; i++) {
for (int j = ; j < n; j++) scanf("%d", &v[j]);
int flag = v[] > v[] ? : -;//根据这个判断可能的情况。
for (int j = ; j <= (n-) / ; j++) {//原来可以这样限制j的范围。
int left = j * + , right = j * + ;
//因为只有右边的会超,所以只控制右边即可。
//厉害了,反过来进行判断。
if (flag == && (v[j] < v[left] || (right < n && v[j] < v[right]))) flag = ;
if (flag == - && (v[j] > v[left] || (right < n && v[j] > v[right]))) flag = ;
}
if (flag == ) printf("Not Heap\n");
else printf("%s Heap\n", flag == ? "Max" : "Min");//这一句厉害厉害。
postOrder();
}
return ;
}
//真是太厉害了,再判断是否是堆以及后根遍历的时候,我还需要时间消化
PAT 1147 Heaps[难]的更多相关文章
- [PAT] 1147 Heaps(30 分)
1147 Heaps(30 分) In computer science, a heap is a specialized tree-based data structure that satisfi ...
- PAT 1147 Heaps
https://pintia.cn/problem-sets/994805342720868352/problems/994805342821531648 In computer science, a ...
- PAT 甲级 1147 Heaps (30 分) (层序遍历,如何建树,后序输出,还有更简单的方法~)
1147 Heaps (30 分) In computer science, a heap is a specialized tree-based data structure that sati ...
- 1147 Heaps
1147 Heaps(30 分) In computer science, a heap is a specialized tree-based data structure that satisfi ...
- PAT甲级——1147 Heaps【30】
In computer science, a heap is a specialized tree-based data structure that satisfies the heap prope ...
- PAT Advanced 1147 Heaps (30) [堆,树的遍历]
题目 In computer science, a heap is a specialized tree-based data structure that satisfies the heap pr ...
- PAT A1147 Heaps (30 分)——完全二叉树,层序遍历,后序遍历
In computer science, a heap is a specialized tree-based data structure that satisfies the heap prope ...
- PAT 1057 Stack [难][树状数组]
1057 Stack (30)(30 分) Stack is one of the most fundamental data structures, which is based on the pr ...
- 1147. Heaps (30)
In computer science, a heap is a specialized tree-based data structure that satisfies the heap prope ...
随机推荐
- 如何通过XAMPP来实现单个服务器上建多个网站
xampp 是一个非常方便的本地 apache + php + mysql 的调试环境,在本地安装测试 WordPress 等各种博客.论坛程序非常方便.今天我们来给大家介绍一下,如何使用 XAMPP ...
- javascript变量声明前置
变量声明前置: 所谓的变量声明前置就是在一个作用域块中,所有的变量都被放在块的开始出声明,下面举个例子你就能明白了 var a = 1; function main() { console.log(a ...
- 【java】java设计模式(5):原型模式(Prototype)
原型模式虽然是创建型的模式,但是与工程模式没有关系,从名字即可看出,该模式的思想就是将一个对象作为原型,对其进行复制.克隆,产生一个和原对象类似的新对象.本小结会通过对象的复制,进行讲解.在Java中 ...
- [java] java 设计模式(2):抽象工厂模式(Abstract Factory)
工厂方法模式有一个问题就是,类的创建依赖工厂类,也就是说,如果想要拓展程序,必须对工厂类进行修改,这违背了闭包原则,所以,从设计角度考虑,有一定的问题,如何解决?就用到抽象工厂模式,创建多个工厂类,这 ...
- socket小实例
服务端 using System; using System.Collections.Generic; using System.Linq; using System.Text; using Syst ...
- Java精选笔记_JSP技术
JSP技术 JSP概述 什么是JSP 在JSP全名是Java Server Page,它是建立在Servlet规范之上的动态网页开发技术. 在JSP文件中,HTML代码与Java代码共同存在,其中,H ...
- Android:控件布局(相对布局)RelativeLayout(转)
相对布局常用属性: 子类控件相对子类控件:值是另外一个控件的id android:layout_above----------位于给定DI控件之上android:layout_below ------ ...
- python2.0_day19_充分使用Django_form实现前端操作后台数据库
在前面的<python2.0_day19_学员管理系统之前端用户交互系统>一节中,我们实现了前端展示customer客户纪录.在<python2.0_day19_前端分页功能的实现& ...
- poj_2441 状态压缩dp
题目大意 N头牛,M个谷仓,每个牛c都有它喜欢的若干个谷仓,现在要将这N头牛安排进谷仓,使得每个牛都位于它喜欢的谷仓,而每个谷仓只能有一头牛.求安排的方案总数.N, M <= 20 题目分析 将 ...
- Android开发 Android Studio2.0 教程从入门到精通Windows版 - 入门篇
第一篇 介绍了Android Studio开发环境以及Genymotion虚拟机安装方法,本节将给大家介绍如何使用Android Studio开发应用. 开发第一应用 可以开发属于自己的应用,是否有点 ...