7-2 家譜處理 (30 分)

7-2 家譜處理 (30 分)

人類學研究對於家族很感興趣,因而研究人員蒐集了一些家族的家譜進行研究。實驗中,使用計算機處理家譜。爲了實現這個目的,研究人員將家譜轉換爲文本文件。下面爲家譜文本文件的實例:html

John
  Robert
    Frank
    Andrew
  Nancy
    David

  

家譜文本文件中,每一行包含一我的的名字。第一行中的名字是這個家族最先的祖先。家譜僅包含最先祖先的後代,而他們的丈夫或妻子不出如今家譜中。每一個人的子女比父母多縮進2個空格。以上述家譜文本文件爲例,John這個家族最先的祖先,他有兩個子女RobertNancyRobert有兩個子女FrankAndrewNancy只有一個子女Davidios

在實驗中,研究人員還收集了家庭文件,並提取了家譜中有關兩我的關係的陳述語句。下面爲家譜中關係的陳述語句實例:測試

John is the parent of Robert
Robert is a sibling of Nancy
David is a descendant of Robert

  

研究人員須要判斷每一個陳述語句是真仍是假,請編寫程序幫助研究人員判斷。spa

輸入格式:

輸入首先給出2個正整數N(2)和M(≤),其中N爲家譜中名字的數量,M爲家譜中陳述語句的數量,輸入的每行不超過70個字符。code

名字的字符串由不超過10個英文字母組成。在家譜中的第一行給出的名字前沒有縮進空格。家譜中的其餘名字至少縮進2個空格,即他們是家譜中最先祖先(第一行給出的名字)的後代,且若是家譜中一個名字前縮進k個空格,則下一行中名字至多縮進k+2個空格。htm

在一個家譜中一樣的名字不會出現兩次,且家譜中沒有出現的名字不會出如今陳述語句中。每句陳述語句格式以下,其中XY爲家譜中的不一樣名字:blog

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

  

#include<stdio.h>
#include<stdlib.h>
#include<malloc.h>
#include<string.h>
#include<iostream>
using namespace std;
typedef struct Family
{
    char name[11];
    int generat;
    int parent;
}Family;
Family Fam[100];
void InputMember(char *name, int &generat)
{
    int gen = 0;
    while(1){
        char temp = getchar();
        if(temp == '\n')
            break;
        else if(temp == ' ')
            gen++;
        else
            *(name++) = temp;

    }
    generat = gen;
    *name = '\0';
    return ;
}
void FindParent(int pos, int n)
{
    while(n >= 0){
        if(Fam[pos].generat - Fam[n].generat == 2){
            Fam[pos].parent = n;
            return ;
        }
        n--;
    }
    if(n < 0)//若不處理則祖先和孩子成了兄弟了
        Fam[pos].parent = -1;
}
int JuParent(int m1, int m2)
{
    if(Fam[m2].parent == m1)
        return 1;
    else
        return 0;
}
int JuSibling(int m1, int m2)
{
    if(Fam[m1].parent == Fam[m2].parent)
        return 1;
    else
        return 0;
}
int JuAncest(int m1, int m2)
{
    while(m2 >= 1){
        if(m1 == Fam[m2].parent)
            return 1;
        m2 = Fam[m2].parent;
    }
    return 0;
}
int main()
{
    int N, M;
    scanf("%d %d", &N, &M);
    getchar();//吃換行符
    for(int i=0; i<N; i++){
        InputMember(Fam[i].name, Fam[i].generat);
        FindParent(i,i);
    }
    for(int i=0; i<M; i++){
        char name1[11], name2[11], relation[11];
        int m1, m2;
        scanf("%s %*s %*s %s %*s %s", name1, relation, name2);
        getchar();
        for(int j=0; j<N; j++){
            if(!strcmp(name1, Fam[j].name))
                m1 = j;
            if(!strcmp(name2, Fam[j].name))
                m2 = j;
        }
        if(!strcmp("descendant",relation)){
            if(JuAncest(m2, m1))
                printf("True\n");
            else
                printf("False\n");
        }
        else if(!strcmp("child",relation)){
            if(JuParent(m2, m1))
                printf("True\n");
            else
                printf("False\n");
        }
        else if(!strcmp("sibling",relation)){
            if(JuSibling(m1, m2))
                printf("True\n");
            else
                printf("False\n");
        }
        else if(!strcmp("parent",relation)){
            if(JuParent(m1, m2))
                printf("True\n");
            else
                printf("False\n");
        }
        else if(!strcmp("ancestor",relation)){
            if(JuAncest(m1, m2))
                printf("True\n");
            else
                printf("False\n");
        }
    }
}
相關文章
相關標籤/搜索