저장 성 빅 데이터 구조 - 출력 트 리 의 잎 사 귀 노드
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
using namespace std;
#define Null -1
#define Tree int
#define N 10
class Treenode{
public:
int left;
int right;
};
Treenode T[N];
Tree Buildtree(Treenode * T){
int i;
int n;
char r,l;
Tree root;
cin>>n;
int check[n];
for(i=0;i> l >> r;
if (l != '-') {
T[i].left = l - '0';
check[T[i].left] = 1;
} else T[i].left = Null;
if (r!='-'){
T[i].right=r-'0';
check[T[i].right]=1;
}
else T[i].right=Null;
}
for(i=0;i q;
if(root==Null) return ;
q.push(root);
while(!q.empty()){
Tree head=q.front();
if((T[head].right==Null)&&(T[head].left==Null)) {
if (q.size() == 1)cout << head << endl;
else cout << head << " ";
}
q.pop();
if(T[head].left!=Null){
q.push(T[head].left);
}
if(T[head].right!=Null){
q.push(T[head].right);
}
}
}
int main (){
Tree t;
t=Buildtree(T);
find_leaves(t);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Sparse Table을 아십니까? 나는 알고 있다.Sparse Table을 지금 배웠으므로, 메모를 겸해 씁니다. 불변의 수열의 임의의 구간에 대한 최소치/최대치를, 전처리 $O(N\log N)$, 쿼리 마다 $O(1)$ 로 구하는 데이터 구조입니다. 숫자 열의 값...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.