03 - 나무 1.List Leaves (25)

4675 단어 list
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 (<=10) which is the total number of nodes in the tree -- and hence the nodes are numbered from 0 to N-1. 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 
 2 #include 
 3 #include <
set>
 4 #include 
 5 #include 
 6 #include <
string>
 7 
using 
namespace std;
 8 
 9 
struct node 
//
결점 구조체
10 
{
11        
int leftchild;  
//
왼쪽 아들
12 
       
int rightchild;  
//
오른쪽 아들
13 
       node ()     
//
초기화
14 
       {
15             leftchild=-
일;
16             rightchild=-
일;
17        }
18 };
19 node n[
20];
20 
bool r[
20];  
//
루트 결점 여부 기록
21 
queue<
int> q;   
//
트리에 대기열이 있습니다.
22 
int t=
0;
23 
24 
void traversal(
int a)   
//
루트 노드 a에 따라 트리를 훑어보고 도결점을 출력합니다
25 
{
26      q.push(a);
27      
while (!q.empty())
28      {
29            
30            
int j=q.front();
31            
//
cout <<"q.pop() "<32 
           q.pop();
33            
if (n[j].leftchild==-
1&&n[j].rightchild==-
1)
//
왼쪽 아들과 아들이 없으면 잎사귀가 된다
34 
           {
35                  
if (t==
0)
//
첫 번째 잎 노드는 직접 출력되며, 이후 각 결점 앞에 공백이 있다
36 
                 {
37                       cout <38                       t=
일;
39                  }
40                  
else
41                  {
42                      cout <<
"
 
"<43                  
44                  }
45            }
46            
if (n[j].leftchild!=-
1)
47            {
48                 q.push(n[j].leftchild);  
//
왼쪽 아들이 존재, 대열에 눌러 넣기
49 
           }
50            
if (n[j].rightchild!=-
1)
51            {
52                  q.push(n[j].rightchild);
//
좌우자 존재, 대기열 누르기
53 
           }
54      }
55 }
56 
int main()
57 {
58     
char a,b;
59     
int m;
60     
while (cin>>m)
61     {
62           memset(r,
false,
sizeof(r));
63           
for (
int i=
0;i//
입력 데이터에 따라 트리 구축
64 
          {
65                 cin>>a>>b;
66                 
if (a>=
'
0
'&&a<=
'

')
67                 {
68                       n[i].leftchild=a-
48;
69                       r[a-
48]=
true;
70                 }
71                 
if (b>=
'
0
'&&b<=
'

')
72                 {
73                       n[i].rightchild=b-
48;
74                       r[b-
48]=
true;
75                 }
76           }
77           
for (
int i=
0;i78           {
79               
if (!r[i])
80               {
81                   traversal(i);
82                   
//
cout <<"i"<83 
                  cout <84                   
break;
85               }      
86           }
87     }
88     
return 
0;
89 }

좋은 웹페이지 즐겨찾기