이 진 트 리 - 이미 알 고 있 는 앞 순서 에서 뒤 순 서 를 구하 세 요.
2763 단어 데이터 구조
A binary tree is a finite set of vertices that is either empty or consists of a root r and two disjoint binary trees called the left and right subtrees. There are three most important ways in which the vertices of a binary tree can be systematically traversed or ordered. They are preorder, inorder and postorder. Let T be a binary tree with root r and subtrees T1,T2.
In a preorder traversal of the vertices of T, we visit the root r followed by visiting the vertices of T1 in preorder, then the vertices of T2 in preorder.
In an inorder traversal of the vertices of T, we visit the vertices of T1 in inorder, then the root r, followed by the vertices of T2 in inorder.
In a postorder traversal of the vertices of T, we visit the vertices of T1 in postorder, then the vertices of T2 in postorder and finally we visit r.
Now you are given the preorder sequence and inorder sequence of a certain binary tree. Try to find out its postorder sequence.
InputThe input contains several test cases. The first line of each test case contains a single integer n (1<=n<=1000), the number of vertices of the binary tree. Followed by two lines, respectively indicating the preorder sequence and inorder sequence. You can assume they are always correspond to a exclusive binary tree.
OutputFor each test case print a single line specifying the corresponding postorder sequence.
Sample Input
9
1 2 4 7 3 5 8 9 6
4 7 2 1 8 5 9 3 6
Sample Output 7 4 2 8 9 5 6 3 1
이것 은 데이터 구조 필기시험 의 필수 문제 이지 만 사용 절 차 는 어떻게 실현 합 니까?재 귀적 으로 옮 겨 다 니 는 방법 에 따라 구축 하고 뒷 순 서 를 배열 에 직접 저장 합 니 다. 여 기 는 distance 를 사용 합 니 다. distance 의 반환 값 은 시작 색인 까지 의 거리 입 니 다. distance 에 대한 소 개 는 다음 과 같 습 니 다.http://blog.csdn.net/lanzhihui_10086/article/details/41805503
이 문제 의 또 다른 문 제 는 여러 그룹의 데이터 입력 입 니 다. 각 그룹의 데이터 가 끝나 고 다음 그룹 에 들 어 갈 때 원래 의 용 기 를 비 워 야 합 니 다. 그 때 는 이 WA 가 여러 번 있 었 기 때 문 입 니 다.
#include
#include
#include
using namespace std;
int pos,n;
vectorpre,in,post;
void rec(int l,int r){
if(l>=r)return ;
int root=pre[pos++];
int mid=distance(in.begin(),find(in.begin(),in.end(),root));
rec(l,mid);
rec(mid+1,r);
post.push_back(root);
}
void solve(){
pos=0;
rec(0,pre.size());
for(int i=0;i>n){
pre.clear();
in.clear();
post.clear();
for(int i=0;i>k;
pre.push_back(k);
}
for(int i=0;i>k;
in.push_back(k);
}
solve();
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.