zoukankan      html  css  js  c++  java
  • 1004 Counting Leaves (30 分)

    A family hierarchy is usually presented by a pedigree tree. Your job is to count those family members who have no child.

    Input Specification:

    Each input file contains one test case. Each case starts with a line containing 0, the number of nodes in a tree, and M (<), the number of non-leaf nodes. Then M lines follow, each in the format:

    ID K ID[1] ID[2] ... ID[K]
    

    where ID is a two-digit number representing a given non-leaf node, K is the number of its children, followed by a sequence of two-digit ID's of its children. For the sake of simplicity, let us fix the root ID to be 01.

    The input ends with N being 0. That case must NOT be processed.

    Output Specification:

    For each test case, you are supposed to count those family members who have no child for every seniority level starting from the root. The numbers must be printed in a line, separated by a space, and there must be no extra space at the end of each line.

    The sample case represents a tree with only 2 nodes, where 01 is the root and 02 is its only child. Hence on the root 01 level, there is 0 leaf node; and on the next level, there is 1 leaf node. Then we should output 0 1 in a line.

    Sample Input:

    2 1
    01 1 02
    

    Sample Output:

    0 1

    题目分析 :第一行给了你2个数字,一个代表的是总节点数,一个代表的是叶子节点数 之后的几行 父亲节点与子节点,要求算出每一层叶子节点的数量
    参考了别人的答案https://blog.csdn.net/qq_37613112/article/details/90577948
    就是先将所有节点都先录入,然后对所有节点遍历,当它父亲节点的层数确定好后,它自己的层数也就能确定了
     1 #include<iostream>
     2 #include<string>
     3 #include<stdlib.h>
     4 #include<vector>
     5 #define MaxNum 101
     6 using namespace std;
     7 typedef struct Node
     8 {
     9     int child = 0;
    10     int level = -1;
    11     int father;
    12 }Tree[MaxNum];
    13 
    14 int main()
    15 {
    16     Tree tree;
    17     int n, m;
    18     cin >> n>> m;
    19     for (int k = 0; k < m; k++)
    20     {
    21         int id,c,idj;
    22         cin >> id >> c;
    23         for (int j = 0; j < c; j++)
    24         {
    25             cin >> idj;
    26             tree[id].child++;
    27             tree[idj].father = id;
    28         }
    29     }
    30     tree[1].father = 1;
    31     tree[1].level = 0;
    32     if (n == 1)
    33     {
    34         cout << "1" << endl;
    35         return 0;
    36     }
    37     int flag = 1;
    38     while (flag)
    39     {
    40         flag = 0;
    41         for (int i = 1; i <=n; i++)
    42         {
    43             if (tree[tree[i].father].level != -1 && tree[i].level == -1)tree[i].level = tree[tree[i].father].level + 1;
    44             else if (tree[tree[i].father].level == -1)
    45                 flag = 1;
    46         }
    47     }
    48     int Level[MaxNum] = { 0 };
    49     int MaxLevel = -1;
    50     for (int i =1; i <=n; i++)
    51     {
    52         if (tree[i].child== 0)Level[tree[i].level]++;
    53         MaxLevel = MaxLevel > tree[i].level ? MaxLevel : tree[i].level;
    54     }
    55     cout << Level[0];
    56     for (int i = 1; i <= MaxLevel; i++)
    57         cout << " " << Level[i];
    58     return 0;
    59 }
    View Code
  • 相关阅读:
    利用avicap32.dll实现的实时视频传输
    异常错误:在可以调用 OLE 之前,必须将当前线程设置为单线程单元(STA)模式
    很不错的python 机器学习资源
    基于C#的机器学习--目录
    C#WinForm无边框窗体移动----模仿鼠标单击标题栏移动窗体位置
    C# WinForm窗体控件GroupBox修改边框颜色控件
    wireshark抓包新手使用教程
    Winform开发框架之权限管理系统功能介绍
    自定义控件开发的调试及DesignMode的状态处理
    Winform开发框架之权限管理系统改进的经验总结(4)--用户分级管理
  • 原文地址:https://www.cnblogs.com/57one/p/11858296.html
Copyright © 2011-2022 走看看