PAT 1110 Complete Binary Tree[判断完全二叉树]
1110 Complete Binary Tree(25 分)
Given a tree, you are supposed to tell if it is a complete binary tree.
Input Specification:
Each input file contains one test case. For each case, the first line gives a positive integer N (≤20) which is the total number of nodes in the tree -- and hence the nodes are numbered from 0 to N−1. Then N lines follow, each corresponds to a node, and gives the indices of the left and right children of the node. If the child does not exist, a -
will be put at the position. Any pair of children are separated by a space.
Output Specification:
For each case, print in one line YES
and the index of the last node if the tree is a complete binary tree, or NO
and the index of the root if not. There must be exactly one space separating the word and the number.
Sample Input 1:
9
7 8
- -
- -
- -
0 1
2 3
4 5
- -
- -
Sample Output 1:
YES 8
Sample Input 2:
8
- -
4 5
0 6
- -
2 3
- 7
- -
- -
Sample Output 2:
NO 1
题目大意:给出一棵树二叉树,判断是否是完全二叉树,如果是那么输出最后一个节点;如果不是输出根节点。
//第一次见完全二叉树的题目,想起了完全二叉树的性质,存储树的话,就用结构体数组,下标表示当前节点号;首先求出树的高度根据logn,看是否余数为0,判断是否+1;那么前n-1层的节点要是满的,并且再通过只有一个左子节点或者右子节点的树只有一个,那么来判断是否是完全二叉树;并且结构体里有一个属性是father默认为-1。感觉好复杂,就没有用代码实现。
代码来自:https://www.liuchuo.net/archives/2158
#include <iostream>
#include <queue>
#include <vector>
#include <string>
using namespace std;
struct TREE {
int left, right;
};
int main() {
int n, root = ;
scanf("%d", &n);
vector<TREE> tree(n);
vector<int> book(n);
for(int i = ; i < n; i++) {
string l, r;
cin >> l >> r;//使用字符串读取,也必须使用字符串,
if(l == "-") {
tree[i].left = -;//如果左右为空的话,则标记为-1.
} else {
tree[i].left = stoi(l);//不用使用-'0'将其转换,直接使用stoi函数即可
book[tree[i].left] = ;
}
if(r == "-"){
tree[i].right = -;
} else {
tree[i].right = stoi(r);
book[tree[i].right] = ;
}
}
for(int i = ; i < n; i++) {
if(book[i] == ) {
root = i;
break;//没有出现的便是根!
}
}
queue<int> q;
q.push(root);
int cnt = , lastnode = ;
while(!q.empty()) {
int node = q.front();
q.pop();
if(node != -) {
lastnode = node;
cnt++;//记录层次遍历在-1出现之前的节点数
}else {
if(cnt != n)
printf("NO %d", root);
else
printf("YES %d", lastnode);
return ;
}
q.push(tree[node].left);//如果左右子节点为空,那么就将-1push进去了
q.push(tree[node].right);
}
return ;
}
//学习了!
1.根据输入建树,每个节点因为本身就是ID,左右如果是空节点,那么就赋值为-1.
2.根节点是怎么找到的呢?在建树输入的过程中,如果一个点没有出现,那么就是根节点,因为都在一棵树中!都是表示的是子节点,如果没出现,就表示它不是子节点,而是根节点!
3.如何去判断是否是CBT呢?使用层次遍历!并且记录当前层次遍历的个数,根据CBT的性质,如果当前出现空节点,但是遍历过的点数!=总结点数,那么就不是二叉树,可以画一个图试试!使用队列!
//学习了!
PAT 1110 Complete Binary Tree[判断完全二叉树]的更多相关文章
- PAT 1110 Complete Binary Tree[比较]
1110 Complete Binary Tree (25 分) Given a tree, you are supposed to tell if it is a complete binary t ...
- PAT 1110 Complete Binary Tree
Given a tree, you are supposed to tell if it is a complete binary tree. Input Specification: Each in ...
- [二叉树建树&完全二叉树判断] 1110. Complete Binary Tree (25)
1110. Complete Binary Tree (25) Given a tree, you are supposed to tell if it is a complete binary tr ...
- PAT甲级——1110 Complete Binary Tree (完全二叉树)
此文章同步发布在CSDN上:https://blog.csdn.net/weixin_44385565/article/details/90317830 1110 Complete Binary ...
- 1110 Complete Binary Tree (25 分)
1110 Complete Binary Tree (25 分) Given a tree, you are supposed to tell if it is a complete binary t ...
- 1110 Complete Binary Tree
1110 Complete Binary Tree (25)(25 分) Given a tree, you are supposed to tell if it is a complete bina ...
- PAT A1110 Complete Binary Tree (25 分)——完全二叉树,字符串转数字
Given a tree, you are supposed to tell if it is a complete binary tree. Input Specification: Each in ...
- PAT 甲级 1110 Complete Binary Tree
https://pintia.cn/problem-sets/994805342720868352/problems/994805359372255232 Given a tree, you are ...
- PAT Advanced 1110 Complete Binary Tree (25) [完全⼆叉树]
题目 Given a tree, you are supposed to tell if it is a complete binary tree. Input Specification: Each ...
随机推荐
- mysql数据库使用mysqldump工具针对一个数据库备份,使用--databases选项与不使用该参数的区别
需求描述: 今天在做mysqldump备份某个数据库的试验,在备份某个数据库的时候可以使用 --databases参数,也可以直接进行某个数据库的备份,那么这里记录下两者的区别 操作过程: 1.使用- ...
- Mike Gancarz:Linux/Unix设计思想
Mike Gancarz是一位技术布道者. 他是Linux/Unix最基本的倡导者之中的一个,也是最早开发X Window System的先驱.他把一些在Unix/Linux社区里口口相 ...
- python2.0_day19_前端分页功能的实现
我们前面完成的客户纪录展示,只有4条,如果有上百条就不能在1页中全部展示了,那样是不人性化的.另外一次性取出来,数据量也比较大.假如现在有95条数据,我们想实现一个每页展示20条,那就分为5页.假如我 ...
- glob模块--查询一个文件名列表
''' 在python中,glob模块是用来查找匹配的文件的 在查找的条件中,需要用到Unix shell中的匹配规则: * : 匹配所所有 ? : 匹配一个字符 *.* : 匹配如:[hello.t ...
- js中解析json时候的eval和$.parseJSON()的区别以及JSON.stringify()
1.第一个区别是:安全性 json格式非常受欢迎,而解析json的方式通常用JSON.parse()但是eval()方法也可以解析,这两者之间有什么区别呢? JSON.parse()之可以解 ...
- Linux命令之type - 显示命令的类型
用途说明 type命令用来显示指定命令的类型.一个命令的类型可以是如下之一 alias 别名 keyword 关键字,Shell保留字 function 函数,Shell函数 builtin 内建命令 ...
- poj_3579 二分法
题目大意 给定N个数,这些数字两两求差构成C(N,2)(即N*(N-1)/2)个数值,求这C(N,2)个数的中位数.N <= 100000. 题目分析 根据数据规模N最大为100000,可知不能 ...
- c++ 函数返回研究[转]
一,c++函数的返回分为以下几种情况 1)主函数main的返回值:这里提及一点,返回0表示程序运行成功. 2)返回非引用类型:函数的返回值用于初始化在跳用函数出创建的临时对象.用函数返回值初始化临时对 ...
- 《转载》struts旅程《1》
struts简介 Struts是Apache软件基金会(ASF)赞助的一个开源项目.它最初是jakarta项目中的一个子项目,并在2004年3月成为ASF的顶级项目.它通过采用JavaServlet/ ...
- js 数组函数
Array.prototype.join Array.prototype.reverse Array.prototype.sort Array.prototype.concat Array.proto ...