PAT甲级——A1155 HeapPaths【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))
One thing for sure is that all the keys along any path from the root to a leaf in a max/min heap must be in non-increasing/non-decreasing order.
Your job is to check every path in a given complete binary tree, in order to tell if it is a heap or not.
Input Specification:
Each input file contains one test case. For each case, the first line gives a positive integer N (1), the number of keys in the tree. Then the next line 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, first print all the paths from the root to the leaves. Each path occupies a line, with all the numbers separated by a space, and no extra space at the beginning or the end of the line. The paths must be printed in the following order: for each node in the tree, all the paths in its right subtree must be printed before those in its left subtree.
Finally 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.
Sample Input 1:
8
98 72 86 60 65 12 23 50
Sample Output 1:
98 86 23
98 86 12
98 72 65
98 72 60 50
Max Heap
Sample Input 2:
8
8 38 25 58 52 82 70 60
Sample Output 2:
8 25 70
8 25 82
8 38 52
8 38 58 60
Min Heap
Sample Input 3:
8
10 28 15 12 34 9 8 56
Sample Output 3:
10 15 8
Solution:
10 15 9
10 28 34
10 28 12 56
Not Heap
这道题很简单,和前面的一道题类似
抓住两个重要条件:
一个是大根堆,小根堆的特点
一个是完全二叉树的性质
然后通过层序遍历序列重构二叉树
通过序列中第一个数与第二个数的大小比较就可以知道是大根堆还是小根堆【注意,一般不要相信题目中所谓的等于,因为PAT中的节点值就从来没有等于过】
通过判断节点与其孩子节点的值的大小可知是否满足Heap Tree的性质
最后使用DFS来输出路径,记得先右再左
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;
struct Node
{
int val;
Node *l, *r;
Node(int a = ) :val(a), l(nullptr), r(nullptr) {}
};
int n;
vector<int>level;
Node *creatTree(int index)//重构二叉树
{
Node *root = new Node(level[index++]);
queue<Node*>q;
q.push(root);
while (!q.empty() && index<n)
{
Node *p = q.front();
q.pop();
p->l = new Node(level[index++]);
q.push(p->l);
if (index >= n)break;
p->r = new Node(level[index++]);
q.push(p->r);
}
return root;
}
vector<int>res;
void DFS(Node *root, bool isMaxHeap,bool &isHeap)
{
if (root == nullptr)
return;
res.push_back(root->val);
if (isMaxHeap)//大根堆判断
{
if ((root->l && root->l->val > root->val) || (root->r && root->r->val > root->val))
isHeap = false;
}
else//小根堆判断
{
if ((root->l && root->l->val < root->val) || (root->r && root->r->val < root->val))
isHeap = false;
}
if (root->l == nullptr && root->r == nullptr)//输出路径
{
for (int i = ; i < res.size(); ++i)
cout << (i == ? "" : " ") << res[i];
cout << endl;
}
DFS(root->r, isMaxHeap, isHeap);//记得先右再左
DFS(root->l, isMaxHeap, isHeap);
res.pop_back();
}
int main()
{
cin >> n;
level.resize(n);
for (int i = ; i < n; ++i)
cin >> level[i];
Node* root = creatTree();
bool isHeap = true;
bool isMaxHeap = level[] >= level[] ? : ;
DFS(root, isMaxHeap, isHeap);
if (isHeap && isMaxHeap)
cout << "Max Heap" << endl;
else if (isHeap && !isMaxHeap)
cout << "Min Heap" << endl;
else
cout << "Not Heap" << endl;
return ;
}
原谅孩子不会静态重构二叉树吧 :), 静态重构【就是根据序列数位置得到整个数树的形状】是我的硬伤,相信不久的明天我就学会了 ^_^
这里借用一下别人静态重构的代码吧
#include <iostream>
#include <vector>
using namespace std;
vector<int> v;
int a[], n, isMin = , isMax = ;
void dfs(int index) {
if (index * > n && index * + > n) {
if (index <= n) {
for (int i = ; i < v.size(); i++)
printf("%d%s", v[i], i != v.size() - ? " " : "\n");
}
}
else {
v.push_back(a[index * + ]);
dfs(index * + );
v.pop_back();
v.push_back(a[index * ]);
dfs(index * );
v.pop_back();
}
}
int main() {
cin >> n;
for (int i = ; i <= n; i++)
scanf("%d", &a[i]);
v.push_back(a[]);
dfs();
for (int i = ; i <= n; i++) {
if (a[i / ] > a[i]) isMin = ;
if (a[i / ] < a[i]) isMax = ;
}
if (isMin == )
printf("Min Heap");
else
printf("%s", isMax == ? "Max Heap" : "Not Heap");
return ;
}
PAT甲级——A1155 HeapPaths【30】的更多相关文章
- PAT 甲级 1147 Heaps (30 分) (层序遍历,如何建树,后序输出,还有更简单的方法~)
1147 Heaps (30 分) In computer science, a heap is a specialized tree-based data structure that sati ...
- PAT 甲级1057 Stack (30 分)(不会,树状数组+二分)*****
1057 Stack (30 分) Stack is one of the most fundamental data structures, which is based on the prin ...
- pat 甲级 1057 Stack(30) (树状数组+二分)
1057 Stack (30 分) Stack is one of the most fundamental data structures, which is based on the princi ...
- PAT甲级:1064 Complete Binary Search Tree (30分)
PAT甲级:1064 Complete Binary Search Tree (30分) 题干 A Binary Search Tree (BST) is recursively defined as ...
- PAT甲级题解(慢慢刷中)
博主欢迎转载,但请给出本文链接,我尊重你,你尊重我,谢谢~http://www.cnblogs.com/chenxiwenruo/p/6102219.html特别不喜欢那些随便转载别人的原创文章又不给 ...
- PAT甲级1127. ZigZagging on a Tree
PAT甲级1127. ZigZagging on a Tree 题意: 假设二叉树中的所有键都是不同的正整数.一个唯一的二叉树可以通过给定的一对后序和顺序遍历序列来确定.这是一个简单的标准程序,可以按 ...
- PAT甲级1119. Pre- and Post-order Traversals
PAT甲级1119. Pre- and Post-order Traversals 题意: 假设二叉树中的所有键都是不同的正整数.一个唯一的二进制树可以通过给定的一对后序和顺序遍历序列来确定,也可以通 ...
- PAT甲级1057. Stack
PAT甲级1057. Stack 题意: 堆栈是最基础的数据结构之一,它基于"先进先出"(LIFO)的原理.基本操作包括Push(将元素插入顶部位置)和Pop(删除顶部元素).现在 ...
- PAT甲级1026. Table Tennis
PAT甲级1026. Table Tennis 题意: 乒乓球俱乐部有N张桌子供公众使用.表的编号从1到N.对于任何一对玩家,如果有一些表在到达时打开,它们将被分配给具有最小数字的可用表.如果所有的表 ...
随机推荐
- 爬虫之requests模块的使用
requests模块 概念:基于网络请求的模块 作用:用来模拟浏览器发请求,从而实现爬虫 环境安装:pip install requests 编码流程: 指定url 发起请求 获取响应数据 持久化存储 ...
- Codeforces - 1194D - 1-2-K Game - dp
https://codeforc.es/contest/1194/problem/D 打个n=30的表好像看出了规律. 其实假设k==3,那么 sg[0]=0, sg[1]=mex{sg[0]}=1, ...
- JavaScript的变量作用域
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- springcloud费话之Eureka集群
目录: springcloud费话之Eureka基础 springcloud费话之Eureka集群 springcloud费话之Eureka服务访问(restTemplate) springcloud ...
- 初识NuGet
因为想查一查opencvsharp的东西,然后发觉这个包可以再NuGet上面可以直接下载.我也经常在很多地方都可以看到NuGet,所以我想写下来,记录下来. NuGet是一个免费的并且开源的包管理器在 ...
- 靶场练习--sqli(1&2)
前言 懒猪赵肥肥耍了3天3夜,每天除了练英语口语,啥子都没干.今天开始发愤图强,嘻嘻~ 计划内容有:靶场.视频.python.PHP.java.计算机英语. 首先,每天必搞靶场必看视频必学java和英 ...
- 让docker容器使用主机系统时间(挂入/etc/localtime)
-v挂入这个文件就可以了: -v /etc/localtime:/etc/localtime:ro
- JAVA中位数排序
package quickSort; public class QuickSort { private static int count; /** * 测试 * @param args */ publ ...
- WPF 几种常用控件样式的总结
这里把wpf中几种常用样式总结一下,后期可以直接拷贝使用,呵呵 一.Button <ResourceDictionary xmlns="http://schemas.microsoft ...
- oracle-SQL语句执行原理和完整过程详解
SQL语句执行过程详解 一条sql,plsql的执行到底是怎样执行的呢? 一.SQL语句执行原理 第一步:客户端吧语句发个服务端执行 当我们在客户端执行select语句时,客户端会把这条SQL语句发送 ...