PAT1004 Counting Leaves(30)(BFS,DFS,树的层序遍历)

类型:树的遍历,dfs

题目:

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

Input

Each input file contains one test case. Each case starts with a line containing 0 < N < 100, the number of nodes in a tree, and M (< N), 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.

Output

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

分析题目

可怜英语不好,题目都看不懂,先查一下一些单词
family hierarchy家谱 pedigree tree谱系树
For the sake of simplicity为了简单起见
seniority排行

好了单词查完了,大概了解了题目意思,输入端首先第一行给一个N表示树的总节点个数,第二个数M表示non-leaf node个数,后面每一行就表示所有non-leaf的结构,最终输出每一层叶子节点的个数

代码

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
vector<int> v[100];
int book[100];
int maxdepth = -1;
void dfs(int index, int depth)
{
    if(v[index].size() == 0)
    {
        maxdepth = max(depth, maxdepth);
        book[depth]++;
        return;
    }
    for(int i=0; i<v[index].size(); i++)
    {
        dfs(v[index][i], depth+1);
    }
}

int main()
{
    int N, M;
    cin >> N >> M;
    for(int i = 0; i<M; i++)
    {
        int index, childnum;
        cin >> index >> childnum;
        for(int j = 0; j<childnum; j++)
        {
            int child;
            cin >> child;
            v[index].push_back(child);
        }
    }
    dfs(1, 0);
    int k = 0;
    for(k=0; k<maxdepth; k++)
    {
        cout << book[k] << " ";
    }
    cout << book[k];
    return 0;
}

总结

其实是一道简单的dfs题目,复习了一下dfs的操作,参考了柳神的代码

还可以~

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,854评论 0 10
  • “我还是很喜欢你,像风走了八千里,不问归期。”——未曾到过的地方,都是远方。未曾看过的风景,都是心之所往。 ...
    二丁目小姐阅读 308评论 0 0
  • 一 我爱你 不是这一世 而是生生世世 二 我爱你 你爱不爱我呢? 如果你也爱我 那么 我们在一起吧 三 亲爱的宝儿...
    夏言baby阅读 215评论 2 0
  • 秋天是个温暖又柔软的季节。和春天不同,这种柔软是干燥的,仿佛一卷工艺繁复的披肩,绵绵地蜷伏在掌心里。倘若经了阳光的...
    陶尊阅读 606评论 0 1
  • Hello,everyone my name is Wangping,my english name is Sop...
    幸福萍宝阅读 1,197评论 0 0

友情链接更多精彩内容