博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT 1110 Complete Binary Tree[判断完全二叉树]
阅读量:6469 次
发布时间:2019-06-23

本文共 2563 字,大约阅读时间需要 8 分钟。

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 N1. 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 NOand the index of the root if not. There must be exactly one space separating the word and the number.

Sample Input 1:

97 8- -- -- -0 12 34 5- -- -

Sample Output 1:

YES 8

Sample Input 2:

8- -4 50 6- -2 3- 7- -- -

Sample Output 2:

NO 1

题目大意:给出一棵树二叉树,判断是否是完全二叉树,如果是那么输出最后一个节点;如果不是输出根节点。 

 //第一次见完全二叉树的题目,想起了完全二叉树的性质,存储树的话,就用结构体数组,下标表示当前节点号;首先求出树的高度根据logn,看是否余数为0,判断是否+1;那么前n-1层的节点要是满的,并且再通过只有一个左子节点或者右子节点的树只有一个,那么来判断是否是完全二叉树;并且结构体里有一个属性是father默认为-1。感觉好复杂,就没有用代码实现。

代码来自:https://www.liuchuo.net/archives/2158

#include 
#include
#include
#include
using namespace std;struct TREE { int left, right;};int main() { int n, root = 0; scanf("%d", &n); vector
tree(n); vector
book(n); for(int i = 0; i < n; i++) { string l, r; cin >> l >> r;//使用字符串读取,也必须使用字符串, if(l == "-") { tree[i].left = -1;//如果左右为空的话,则标记为-1. } else { tree[i].left = stoi(l);//不用使用-'0'将其转换,直接使用stoi函数即可 book[tree[i].left] = 1; } if(r == "-"){ tree[i].right = -1; } else { tree[i].right = stoi(r); book[tree[i].right] = 1; } } for(int i = 0; i < n; i++) { if(book[i] == 0) { root = i; break;//没有出现的便是根! } } queue
q; q.push(root); int cnt = 0, lastnode = 0; while(!q.empty()) { int node = q.front(); q.pop(); if(node != -1) { lastnode = node; cnt++;//记录层次遍历在-1出现之前的节点数 }else { if(cnt != n) printf("NO %d", root); else printf("YES %d", lastnode); return 0; } q.push(tree[node].left);//如果左右子节点为空,那么就将-1push进去了 q.push(tree[node].right); } return 0;}

 

//学习了!

1.根据输入建树,每个节点因为本身就是ID,左右如果是空节点,那么就赋值为-1.

2.根节点是怎么找到的呢?在建树输入的过程中,如果一个点没有出现,那么就是根节点,因为都在一棵树中!都是表示的是子节点,如果没出现,就表示它不是子节点,而是根节点!

3.如何去判断是否是CBT呢?使用层次遍历!并且记录当前层次遍历的个数,根据CBT的性质,如果当前出现空节点,但是遍历过的点数!=总结点数,那么就不是二叉树,可以画一个图试试!使用队列!

//学习了!

转载于:https://www.cnblogs.com/BlueBlueSea/p/9571976.html

你可能感兴趣的文章
火绒安全马刚自述:中国还有一个“纯粹”的杀毒软件
查看>>
20年历史的bug被发现会泄漏微软 Live 账号登录信息
查看>>
Java 基础DAY 01
查看>>
基于 AI 技术的医疗影像靠谱么?听听放射科的教授们怎么说
查看>>
信息安全的江湖 只有圈内人玩的转
查看>>
日媒:索尼的品牌复兴路充满荆棘
查看>>
竞争不是挤牙膏 AMD将创新拉回芯片产业竞争
查看>>
信息智能化下,传感器技术的升级能否助力安防行业崛起
查看>>
满足数字业务和云计算需求的新的广域网架构
查看>>
勒索病毒未死,传播性更猛的新病毒来袭
查看>>
同一个元素的单击事件与双击事件
查看>>
Python中必备的字符串拼接方法,你知道多少?
查看>>
并发基础笔记-(线程基础)
查看>>
京东两则回应上热搜:淘汰三类员工,取消快递员底薪引热议!
查看>>
web前端学习教程(视频教程、学习教程、学习路线、课程大纲)
查看>>
[译] 论 Rust 和 WebAssembly 对源码地址索引的极限优化
查看>>
Ubuntu系统上安装Nginx服务器以及使用方法
查看>>
正则知识点
查看>>
Position属性:static、fixed、absolute和relative的区别和用法
查看>>
6_flutter_card(卡片),计算器,状态栏隐藏
查看>>