03 - 나무 2 List Leaves (25 점)
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
사고의 방향
차례차례 편력 하 다
#include
#include
#define Null -1
#define MaxTree 10
#define Tree int
struct TreeNode
{
int Data;
Tree Left;
Tree Right;
}T[MaxTree], queue[MaxTree];
int first = -1, last = -1;
Tree BuildTree(struct TreeNode T[]);
void Push(struct TreeNode TN);
struct TreeNode Pop();
void Travel(Tree R);
int N;
int main()
{
Tree R;
R = BuildTree(T);
Travel(R);
return 0;
}
Tree BuildTree(struct TreeNode T[])
{
int i,Root;
char cl,cr;
// int i;
// int N;
scanf("%d",&N);
int check[N];
if(N)
{
for(i = 0; i < N;i++) check[i] = 0;
for(i = 0;i < N;i++){
T[i].Data = i;
scanf("
%c %c",&cl,&cr);// // scanf , scanf ,
// 1. cl
if(cl!='-'){
// '2'-'0' = 2
T[i].Left = cl-'0';
check[T[i].Left] = 1;
}
// Null -1
else T[i].Left = Null;
// 2. cr
if(cr!='-'){
// '2'-'0' = 2
T[i].Right = cr-'0';
check[T[i].Right] = 1;
}
// Null -1
else T[i].Right = Null;
}
for(i = 0; i < N;i++){
if(!check[i]) break;
}
Root = i;
}
return Root;
}
void Push(struct TreeNode TN)
{
queue[++last] = TN;
}
struct TreeNode Pop()
{
return queue[++first];
}
void Travel(Tree R)
{
int leaves[N];
int i,k = 0;
struct TreeNode tmp;
Push(T[R]);
for(i = 0;i < N;i++)
{
tmp = Pop();
if(tmp.Left == -1 && tmp.Right == -1){
leaves[k++] = tmp.Data;
}
if(tmp.Left != -1){
Push(T[tmp.Left]);
}
if(tmp.Right != -1){
Push(T[tmp.Right]);
}
}
for (i = 0; i < k-1;i++)
{
printf("%d ",leaves[i]);
}
printf("%d
",leaves[k-1]);
}
망각 점
+ + i 와 i +
x = i ++; // x i 1, i 1
x = ++i; // i 1, x i 1
감상
프로 그래 밍 소 백, 이 문 제 를 보 니 정말 손 쓸 수가 없 었 습 니 다. 하지만 위의 문 제 는 구조 트 리 와 같 습 니 다. 이 진 트 리 의 구축 방향 은 이것 과 똑 같 습 니 다. 그리고 스 택 과 대열 을 복습 하고 계속 화 이 팅 하 세 요 ~
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.