1004 Counting Leaves(树,层次遍历)

秒速五厘米 2024-04-08 08:43 197阅读 0赞

1004 Counting Leaves

0、题目

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<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:

  1. 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:

  1. 2 1
  2. 01 1 02

Sample Output:

  1. 0 1

1、大致题意

输出每层叶节点的数目

2、基本思路

定义结点的结构体Node,采用STL模板的queue来进行层序遍历,遍历过程中将孩子结点的层数+1,leaves数组用来存储每层叶节点的数目

3、AC代码

  1. #include<cstdio>
  2. #include<queue>
  3. #include<vector>
  4. using namespace std;
  5. const int maxn = 110;
  6. typedef struct {
  7. int layer;
  8. vector<int> child;
  9. } Node;
  10. int leaves[maxn], maxLayer = -1;
  11. Node node[maxn];
  12. void levelOrder(int st) {
  13. queue<int> q;
  14. q.push(st);
  15. node[st].layer = 1;
  16. while(!q.empty()) {
  17. int now = q.front();
  18. q.pop();
  19. if(node[now].child.empty()) {
  20. leaves[node[now].layer]++; //这一层的叶结点数目+1
  21. if(node[now].layer > maxLayer) {
  22. //最大层的节点一定为叶结点
  23. maxLayer = node[now].layer;
  24. }
  25. }
  26. for(int i = 0; i < node[now].child.size(); i++) {
  27. q.push(node[now].child[i]);
  28. node[node[now].child[i]].layer = node[now].layer + 1; //孩子结点的层数+1
  29. }
  30. }
  31. }
  32. int main(int argc, char** argv) {
  33. int N, M;
  34. scanf("%d %d", &N, &M);
  35. for(int i = 0; i < M; i++) {
  36. int father, K, tempChild;
  37. scanf("%d %d", &father, &K);
  38. for(int j = 0; j < K; j++) {
  39. scanf("%d", &tempChild);
  40. node[father].child.push_back(tempChild);
  41. }
  42. }
  43. levelOrder(1);
  44. for(int i = 1; i <= maxLayer; i++) {
  45. if(i != 1) printf(" ");
  46. printf("%d", leaves[i]);
  47. }
  48. return 0;
  49. }

发表评论

表情:
评论列表 (有 0 条评论,197人围观)

还没有评论,来说两句吧...

相关阅读

    相关 PAT A1004 Counting Leaves

    本程序为PAT A1004 Counting Leaves答案,[题目链接][Link 1]。 主体思想:算法主要采用DFS算法,深度优先访问每一个结点,检查其是否为叶子结点