家谱处理

人类学研究对于家族很感兴趣,于是研究人员搜集了一些家族的家谱进行研究。实验中,使用计算机处理家谱。为了实现这个目的,研究人员将家谱转换为文本文件。下面为家谱文本文件的实例:


 
 
  1. John
  2. Robert
  3. Frank
  4. Andrew
  5. Nancy
  6. David

家谱文本文件中,每一行包含一个人的名字。第一行中的名字是这个家族最早的祖先。家谱仅包含最早祖先的后代,而他们的丈夫或妻子不出现在家谱中。每个人的子女比父母多缩进2个空格。以上述家谱文本文件为例,John这个家族最早的祖先,他有两个子女RobertNancyRobert有两个子女FrankAndrewNancy只有一个子女David

在实验中,研究人员还收集了家庭文件,并提取了家谱中有关两个人关系的陈述语句。下面为家谱中关系的陈述语句实例:


 
 
  1. John is the parent of Robert
  2. Robert is a sibling of Nancy
  3. David is a descendant of Robert

研究人员需要判断每个陈述语句是真还是假,请编写程序帮助研究人员判断。

输入格式:

输入首先给出2个正整数N(2≤N≤100)和M(≤100),其中N为家谱中名字的数量,M为家谱中陈述语句的数量,输入的每行不超过70个字符。

名字的字符串由不超过10个英文字母组成。在家谱中的第一行给出的名字前没有缩进空格。家谱中的其他名字至少缩进2个空格,即他们是家谱中最早祖先(第一行给出的名字)的后代,且如果家谱中一个名字前缩进k个空格,则下一行中名字至多缩进k+2个空格。

在一个家谱中同样的名字不会出现两次,且家谱中没有出现的名字不会出现在陈述语句中。每句陈述语句格式如下,其中XY为家谱中的不同名字:


 
 
  1. X is a child of Y
  2. X is the parent of Y
  3. X is a sibling of Y
  4. X is a descendant of Y
  5. X is an ancestor of Y

输出格式:

对于测试用例中的每句陈述语句,在一行中输出True,如果陈述为真,或False,如果陈述为假。

输入样例:


 
 
  1. 6 5
  2. John
  3. Robert
  4. Frank
  5. Andrew
  6. Nancy
  7. David
  8. Robert is a child of John
  9. Robert is an ancestor of Andrew
  10. Robert is a sibling of Nancy
  11. Nancy is the parent of Frank
  12. John is a descendant of Andrew

输出样例:


 
 
  1. True
  2. True
  3. True
  4. False
  5. False
看似二叉树,但不用建立二叉树
 
 

 
 
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<string.h>
  4. struct Node
  5. {
  6.     char name[ 15];
  7.     char father[ 15];
  8.     int num;   //空格数
  9. } people[ 102];
  10. int main()
  11. {
  12.     int n,m;
  13.     char temp[ 75];
  14.     int i,j,k;
  15.     scanf( "%d %d",&n,&m);
  16.     getchar();  
  17.     for( i= 0; i<n; i++)
  18.     {
  19.         people[i].num = 0; //空格数初始化为0
  20.         gets(temp);
  21.         int L = strlen(temp);
  22.         for( j= 0; j<L; j++)
  23.         {
  24.             if( temp[j]== ' ')
  25.                 people[i].num++;
  26.             else
  27.             {
  28.                 strcpy( people[i].name, temp+j);   //除空格数以外的字符
  29.                 break;
  30.             }
  31.         }
  32.         if( !people[i].num )
  33.             strcpy( people[i].father, "root");   //如果空格数为0则表示根
  34.         else
  35.         {
  36.             for( k=i -1; k>= 0; k--)
  37.             {
  38.                 if( people[i].num> people[k].num)
  39.                 {
  40.                     strcpy( people[i].father,people[k].name);
  41.                     break;
  42.                 }
  43.             }
  44.         }
  45.     }
  46.     char a[ 15],b[ 15],c[ 15],d[ 15];
  47.     char temp1[ 15],temp2[ 15];
  48.     for( i= 0; i<m; i++)
  49.     {
  50.         scanf( "%s %s %s %s %s %s",a,d,d,b,d,c);
  51.         if( b[ 0] == 'c')
  52.         {
  53.             //X is a child of Y
  54.             for( k= 0; k<n; k++)
  55.             {
  56.                 if( strcmp( people[k].name,a)== 0)
  57.                 {
  58.                     if( strcmp( people[k].father,c)== 0)
  59.                         printf( "True\n");
  60.                     else printf( "False\n");
  61.                     break;
  62.                 }
  63.             }
  64.         }
  65.         else if( b[ 0] == 'p')
  66.         {
  67.             //X is the parent of Y
  68.             for( k= 0; k<n; k++)
  69.             {
  70.                 if( strcmp( people[k].name,c)== 0)
  71.                 {
  72.                     if( strcmp( people[k].father,a)== 0)
  73.                         printf( "True\n");
  74.                     else printf( "False\n");
  75.                     break;
  76.                 }
  77.             }
  78.         }
  79.         else if( b[ 0] == 's')
  80.         {
  81.             // X is a sibling of Y
  82.             for( k= 0; k<n; k++)
  83.             {
  84.                 //寻找两个结点的父节点
  85.                 if( strcmp( people[k].name,a)== 0)
  86.                     strcpy(temp1,people[k].father);
  87.                 if( strcmp( people[k].name,c)== 0)
  88.                     strcpy(temp2,people[k].father);
  89.             }
  90.             if( strcmp(temp1,temp2)== 0)
  91.             printf( "True\n");
  92.             else printf( "False\n");
  93.         }
  94.         else if( b[ 0] == 'd')
  95.         {
  96.             //X is a descendant of Y
  97.             for( k= 0; k<n; k++)
  98.             {
  99.                 if( strcmp( people[k].name,a)== 0)
  100.                     strcpy(temp1,people[k].father);
  101.             }
  102.             while( strcmp(temp1,c) && strcmp( temp1, "root"))
  103.             {
  104.                 for( k= 0; k<n; k++)
  105.                     if( ! strcmp(people[k].name,temp1))
  106.                         strcpy( temp1,people[k].father);
  107.             }
  108.             if( strcmp(temp1, "root")== 0)
  109.                 printf( "False\n");
  110.             else printf( "True\n");
  111.         }
  112.         else if( b[ 0] == 'a')
  113.         {
  114.             //X is an ancestor of Y
  115.             for( k= 0; k<n; k++)
  116.             {
  117.                 if( strcmp( people[k].name,c)== 0)
  118.                     strcpy(temp1,people[k].father);
  119.             }
  120.             while( strcmp(temp1,a) && strcmp( temp1, "root"))
  121.             {
  122.                 for( k= 0; k<n; k++)
  123.                     if( ! strcmp(people[k].name,temp1))
  124.                         strcpy( temp1,people[k].father);
  125.             }
  126.             if( strcmp(temp1, "root")== 0)
  127.                 printf( "False\n");
  128.             else printf( "True\n");
  129.         }
  130.     }
  131.     getchar();
  132.     return 0;
  133. }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值