List Leaves

Posted jiamian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了List Leaves相关的知识,希望对你有一定的参考价值。

Given a tree, you are supposed to list all the leaves in the order of top down, and left to right.

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N (≤) which is the total number of nodes in the tree -- and hence the nodes are numbered from 0 to N1. Then N lines follow, each corresponds to a node, and gives the indices of the left and right children of the node. If the child does not exist, a "-" will be put at the position. Any pair of children are separated by a space.

Output Specification:

For each test case, print in one line all the leaves‘ indices in the order of top down, and left to right. There must be exactly one space between any adjacent numbers, and no extra space at the end of the line.

Sample Input:

8
1 -
- -
0 -
2 7
- -
- -
5 -
4 6

Sample Output:

4 1 5

 

给定一棵树,您应该按照自上而下和从左到右的顺序列出所有叶子。

 

 1 #include <stdio.h>
 2 #include <queue>
 3 #include <algorithm>
 4 #define MaxTree 11
 5 #define Null -1 
 6 using namespace std;
 7 
 8 int check[MaxTree];
 9 int P[MaxTree];
10 int num=0;
11 queue<int> qu;
12 
13 struct TreeNode
14 {
15     int Left;
16     int Right; 
17 }T[MaxTree];
18 
19 int BuildTree(struct TreeNode T[])
20 {
21     int N,i;
22     char le,ri;
23     int Root;
24     scanf("%d
",&N);
25     if(N)
26     {
27         for(i=0;i<N;i++)
28         {
29             check[i]=0;
30         }
31         for(i=0;i<N;i++)
32         {
33             scanf("%c %c
",&le,&ri);
34             if(le!=-)
35             {
36                 T[i].Left=le-0;
37                 check[T[i].Left]=1;
38             }
39             else T[i].Left=Null;
40             if(ri!=-)
41             {
42                 T[i].Right=ri-0;
43                 check[T[i].Right]=1;
44             }
45             else T[i].Right=Null;
46         }
47         for(i=0;i<N;i++)
48         {
49             if(!check[i]) break;
50         }
51         Root = i;
52     }
53     else 
54     {
55         Root=Null;
56     }
57     return Root;
58 }
59 
60 void search(int Tree)
61 {
62     if(Tree!=Null)
63     {
64         qu.push(Tree);
65         while(!qu.empty())
66         {
67             int k;
68             k=qu.front();
69             if(T[k].Left==Null&&T[k].Right==Null)
70                 P[num++]=k;
71             qu.pop();;
72             if(T[k].Left!=Null)
73                 qu.push(T[k].Left);
74             if(T[k].Right!=Null)
75                 qu.push(T[k].Right);
76         }
77     }
78     else return;
79 }
80 
81 int main()
82 {
83     int Tree;
84     Tree=BuildTree(T);
85     search(Tree);
86     int i;
87     for(i=0;i<num;i++)
88     {
89         if(i==0)
90             printf("%d",P[i]);
91         else printf(" %d",P[i]);
92     }
93     return 0;
94 }

 

技术图片

 

以上是关于List Leaves的主要内容,如果未能解决你的问题,请参考以下文章

List Leaves

03-树2 List Leaves

List Leaves

03-树2 List Leaves(25 分)

03-树2 List Leaves (25 分)

PTA数据结构之 List Leaves