PTA数据结构与算法题目集(中文) 7-27
PTA数据结构与算法题目集(中文) 7-27
人类学研究对于家族很感兴趣,于是研究人员搜集了一些家族的家谱进行研究。实验中,使用计算机处理家谱。为了实现这个目的,研究人员将家谱转换为文本文件。下面为家谱文本文件的实例:
John
Robert
Frank
Andrew
Nancy
David
家谱文本文件中,每一行包含一个人的名字。第一行中的名字是这个家族最早的祖先。家谱仅包含最早祖先的后代,而他们的丈夫或妻子不出现在家谱中。每个人的子女比父母多缩进2个空格。以上述家谱文本文件为例,John
这个家族最早的祖先,他有两个子女Robert
和Nancy
,Robert
有两个子女Frank
和Andrew
,Nancy
只有一个子女David
。
在实验中,研究人员还收集了家庭文件,并提取了家谱中有关两个人关系的陈述语句。下面为家谱中关系的陈述语句实例:
John is the parent of Robert
Robert is a sibling of Nancy
David is a descendant of Robert
研究人员需要判断每个陈述语句是真还是假,请编写程序帮助研究人员判断。
输入格式:
输入首先给出2个正整数N(2)和M(≤),其中N为家谱中名字的数量,M为家谱中陈述语句的数量,输入的每行不超过70个字符。
名字的字符串由不超过10个英文字母组成。在家谱中的第一行给出的名字前没有缩进空格。家谱中的其他名字至少缩进2个空格,即他们是家谱中最早祖先(第一行给出的名字)的后代,且如果家谱中一个名字前缩进k个空格,则下一行中名字至多缩进k+2个空格。
在一个家谱中同样的名字不会出现两次,且家谱中没有出现的名字不会出现在陈述语句中。每句陈述语句格式如下,其中X
和Y
为家谱中的不同名字:
X is a child of Y
X is the parent of Y
X is a sibling of Y
X is a descendant of Y
X is an ancestor of Y
输出格式:
对于测试用例中的每句陈述语句,在一行中输出True
,如果陈述为真,或False
,如果陈述为假。
输入样例:
6 5
John
Robert
Frank
Andrew
Nancy
David
Robert is a child of John
Robert is an ancestor of Andrew
Robert is a sibling of Nancy
Nancy is the parent of Frank
John is a descendant of Andrew
输出样例:
True
True
True
False
False
题目分析:一道利用树的基础题 主要就是对数据的处理 然后对各种操作的实现 树利用孩子兄弟法存储 对每一个树节点元素 添加一个Level元素 进行对其位置判别 比如空格空2位 其level就是2 注意将其添加到树中时 要去掉空格
(os:这道题没全队 后两个测试点显示 我段错误 找了一会都没找出来哪里越界了)
#define _CRT_SECURE_NO_WARNINGS
#include<stdio.h>
#include<string.h>
#include<malloc.h> typedef struct TreeNode* PtrToTreeNode;
typedef PtrToTreeNode Parent;
typedef PtrToTreeNode NextSibiling;
typedef PtrToTreeNode FirstChild;
struct TreeNode
{
char Data[];
NextSibiling sibiling;
FirstChild firstChild;
int Level;
};
void ChangeStr(int i, char name[])
{
int k = strlen(name);
int j;
for (j = ; j < k - i; j++)
name[j] = name[j + i];
for (; j < k; j++)
name[j] = '\0';
} PtrToTreeNode Insert(char name[],PtrToTreeNode Tree)
{
int i = ;
for (i = ; name[i] == ' '; i++)
;
//i /= 2;
if (!Tree)
{
Tree = (PtrToTreeNode)malloc(sizeof(struct TreeNode));
ChangeStr(i, name);
strcpy(Tree->Data, name);
Tree->firstChild = NULL;
Tree->sibiling = NULL;
Tree->Level = i;
}
else
{
if (i > Tree->Level)
{
if (!Tree->sibiling)
Tree->firstChild = Insert(name, Tree->firstChild);
else
Tree->sibiling = Insert(name, Tree->sibiling);
}
else if (i == Tree->Level)
Tree->sibiling = Insert(name, Tree->sibiling);
}
return Tree;
} PtrToTreeNode FindElement(PtrToTreeNode Tree, char a[])
{
PtrToTreeNode Tmp;
if (Tree)
{
if (!strcmp(Tree->Data, a))
return Tree;
if (Tmp = FindElement(Tree->firstChild, a))
return Tmp;
if (Tmp = FindElement(Tree->sibiling, a))
return Tmp;
}
return NULL;
} int FindChild(PtrToTreeNode Tree,char a[], char c[])
{
PtrToTreeNode Parent = FindElement(Tree, c);
PtrToTreeNode Position = Parent->firstChild;
if (!strcmp(Position->Data, a))
return ;
while (Position->sibiling)
{
Position = Position->sibiling;
if (!strcmp(Position->Data, a))
return ;
}
return ;
} int FindAncestor(PtrToTreeNode Ancestor,char c[])
{
if(Ancestor)
{
if (!strcmp(Ancestor->Data, c))
return ;
if (FindAncestor(Ancestor->firstChild, c) || FindAncestor(Ancestor->sibiling, c))
return ;
else
return ;
}
return ;
} int FindBrother(PtrToTreeNode T, PtrToTreeNode Bro)
{
while (T)
{
if (T == Bro)
return ;
else
T = T->sibiling;
}
return ;
} int FindSibiling(PtrToTreeNode Tree, char a[], char b[])
{
PtrToTreeNode Brother1 = FindElement(Tree, a);
PtrToTreeNode Brother2 = FindElement(Tree, b);
if (FindBrother(Brother1, Brother2) || FindBrother(Brother2, Brother1))
return ;
else
return ;
} int Judget(PtrToTreeNode Tree,char a[], char b[], char c[])
{
PtrToTreeNode Ancestor = NULL;
switch (b[])
{
case'c':return FindChild(Tree, a, c); break;
case'a':Ancestor = FindElement(Tree,a); return FindAncestor(Ancestor, c); break;
case's':return FindSibiling(Tree, a, c); break;
case'p':return FindChild(Tree, c, a); break;
case'd':Ancestor = FindElement(Tree, c); return FindAncestor(Ancestor,a); break;
}
} int main()
{
int N, M;
scanf("%d%d\n", &N, &M);
PtrToTreeNode Tree=NULL;
while (N--)
{
char name[];
gets(name);
Tree=Insert(name, Tree);
}
while (M--)
{
char a[], b[], c[], d[], e[],f[];
scanf("%s%s%s%s%s%s",a, b, c, d, e,f);
if (Judget(Tree,a, d, f))
printf("True\n");
else
printf("False\n");
}
return ;
}
PTA数据结构与算法题目集(中文) 7-27的更多相关文章
- PTA数据结构与算法题目集(中文) 7-43字符串关键字的散列映射 (25 分)
PTA数据结构与算法题目集(中文) 7-43字符串关键字的散列映射 (25 分) 7-43 字符串关键字的散列映射 (25 分) 给定一系列由大写英文字母组成的字符串关键字和素数P,用移位法定义 ...
- PTA数据结构与算法题目集(中文) 7-42整型关键字的散列映射 (25 分)
PTA数据结构与算法题目集(中文) 7-42整型关键字的散列映射 (25 分) 7-42 整型关键字的散列映射 (25 分) 给定一系列整型关键字和素数P,用除留余数法定义的散列函数将关键字映射 ...
- PTA数据结构与算法题目集(中文) 7-41PAT排名汇总 (25 分)
PTA数据结构与算法题目集(中文) 7-41PAT排名汇总 (25 分) 7-41 PAT排名汇总 (25 分) 计算机程序设计能力考试(Programming Ability Test,简称P ...
- PTA数据结构与算法题目集(中文) 7-40奥运排行榜 (25 分)
PTA数据结构与算法题目集(中文) 7-40奥运排行榜 (25 分) 7-40 奥运排行榜 (25 分) 每年奥运会各大媒体都会公布一个排行榜,但是细心的读者发现,不同国家的排行榜略有不同.比如 ...
- PTA数据结构与算法题目集(中文) 7-39魔法优惠券 (25 分)
PTA数据结构与算法题目集(中文) 7-39魔法优惠券 (25 分) 7-39 魔法优惠券 (25 分) 在火星上有个魔法商店,提供魔法优惠券.每个优惠劵上印有一个整数面值K,表示若你在购买某商 ...
- PTA数据结构与算法题目集(中文) 7-38寻找大富翁 (25 分)
PTA数据结构与算法题目集(中文) 7-38寻找大富翁 (25 分) 7-38 寻找大富翁 (25 分) 胡润研究院的调查显示,截至2017年底,中国个人资产超过1亿元的高净值人群达15万人.假 ...
- PTA数据结构与算法题目集(中文) 7-37 模拟EXCEL排序 (25 分)
PTA数据结构与算法题目集(中文) 7-37 模拟EXCEL排序 (25 分) 7-37 模拟EXCEL排序 (25 分) Excel可以对一组纪录按任意指定列排序.现请编写程序实现类似功能. ...
- PTA数据结构与算法题目集(中文) 7-36 社交网络图中结点的“重要性”计算 (30 分)
PTA数据结构与算法题目集(中文) 7-36 社交网络图中结点的“重要性”计算 (30 分) 7-36 社交网络图中结点的“重要性”计算 (30 分) 在社交网络中,个人或单位(结点)之间通过某 ...
- PTA数据结构与算法题目集(中文) 7-35 城市间紧急救援 (25 分)
PTA数据结构与算法题目集(中文) 7-35 城市间紧急救援 (25 分) 作为一个城市的应急救援队伍的负责人,你有一张特殊的全国地图.在地图上显示有多个分散的城市和一些连接城市的快速道路.每个城市 ...
- PTA数据结构与算法题目集(中文) 7-34
PTA数据结构与算法题目集(中文) 7-34 7-34 任务调度的合理性 (25 分) 假定一个工程项目由一组子任务构成,子任务之间有的可以并行执行,有的必须在完成了其它一些子任务后才能执行.“ ...
随机推荐
- MySQL记录操作(多表查询)
准备 建表与数据准备 #建表 create table department( id int, name varchar(20) ); create table employee( id int pr ...
- Python模块三
collections模块 在内置数据类型(dict.list.set.tuple)的基础上,collections模块还提供了几个额外的数据类型:Counter.deque.defaultdict. ...
- 痞子衡嵌入式:恩智浦SDK驱动代码风格检查工具预览版
大家好,我是痞子衡,是正经搞技术的痞子. 接上文 <恩智浦SDK驱动代码风格.模板.检查工具> 继续聊,是的,过去的三天里我花了一些时间做了一个基于 PyQt5 的 GUI 工具,可以帮助 ...
- Codeforces Round #369 (Div. 2)E
ZS and The Birthday Paradox 题目:一年有2^n天,有k个人,他们的生日有冲突的概率是多少?答案用最简分数表示,分子分母对1e6+3取模.1 ≤ n ≤ 10^18, 2 ≤ ...
- 【JAVA进阶架构师指南】之二:JVM篇
前言 谈到JAVA,就不得不提JVM---JAVA程序员绕不开的话题.也许有童鞋会说,我不懂JVM,但是我一样可以写出JAVA代码,我相信说这种话的童鞋,往往是只有1-3年的初级开发人员,对JAV ...
- google recaptcha-v2
最近在给公司的网页把传统的输入字符数字的验证码改google reCAPTCHA验证,就写写我学到的和一些我的理解!说得不好请勿怪!有兴趣可以的去https://developers.google.c ...
- Python科学计算库SymPy初探
SymPy基础应用 .caret, .dropup > .btn > .caret { border-top-color: #000 !important; } .label { bord ...
- shell编程之变量赋值
1.变量赋值: name=lbg 等号前后不能有空格 name="Lebron James" 变量值中有空格要用双引号 echo ${name} 用${}更保险 shopt -s ...
- Scapy编写ICMP扫描脚本
使用Scapy模块编写ICMP扫描脚本: from scapy.all import * import optparse import threading import os def scan(ipt ...
- [IROS 2018]Semantic Mapping with Simultaneous Object Detection and Localization
论文地址:https://arxiv.org/abs/1810.11525 论文视频:https://www.youtube.com/watch?v=W-6ViSlrrZgwww.youtu ...