03 - 나무 1.List Leaves (25)
4675 단어 list
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() "<
q.pop();
33
if (n[j].leftchild==-
1&&n[j].rightchild==-
1)
//
왼쪽 아들과 아들이 없으면 잎사귀가 된다
34
{
35
if (t==
0)
//
첫 번째 잎 노드는 직접 출력되며, 이후 각 결점 앞에 공백이 있다
36
{
37 cout <
일;
39 }
40
else
41 {
42 cout <<
"
"<
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;i
79
if (!r[i])
80 {
81 traversal(i);
82
//
cout <<"i"<83
cout <
break;
85 }
86 }
87 }
88
return
0;
89 }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[SwiftUI]List화한 CoreData를 가로 스와이프로 행 삭제하는 방법상당히 조사했지만 일본어 자료가 없었기 때문에 비망록으로 남겨 둔다. 아래와 같이 CoreData를 참조한 리스트를 가로 스와이프로 삭제하고 싶었다. UI 요소뿐만 아니라 원본 데이터 당 삭제합니다. 잘 다른 페이지...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.