PAT A급 1064 Complete Binary Search Tree(30점) 완전 두 갈래 나무, BST
A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:
A Complete Binary Tree (CBT) is a tree that is completely filled, with the possible exception of the bottom level, which is filled from left to right.
Now given a sequence of distinct non-negative integer keys, a unique BST can be constructed if it is required that the tree must also be a CBT. You are supposed to output the level order traversal sequence of this BST.
Input Specification:
Each input file contains one test case. For each case, the first line contains a positive integer N (≤1000). Then N distinct non-negative integer keys are given in the next line. All the numbers in a line are separated by a space and are no greater than 2000.
Output Specification:
For each test case, print in one line the level order traversal sequence of the corresponding complete binary search tree. All the numbers in a line must be separated by a space, and there must be no extra space at the end of the line.
Sample Input:
10
1 2 3 4 5 6 7 8 9 0
Sample Output:
6 3 8 1 5 7 9 0 2 4
해석: 입력 데이터에 대한 정렬을 먼저 합니다. BST의 중차 역행 결과는 점차적으로 증가하고, BST의 중차 역행 결과는 점차적으로 증가하기 때문입니다. (중요한 일은 세 번!!!)그래서 중서 역행 결과를 얻을 수 있어요.
그래서 DFS 모방을 통해 대응하는 위치의 데이터를 반복해서 구하는 것이 틀림없다. i위치의 왼쪽 결점은 2i, 오른쪽 결점은 2i+1에 대응한다
마지막으로 BSF를 통해 반복 결과를 구합니다
#include
#include
#include
using namespace std;
const int maxn = 1e3 + 10;
int a[maxn],b[maxn],index = 0;
int n;
//
void dfs(int x){
if(x > n)return;
dfs(x << 1);//2x
b[x] = a[index++];
dfs((x << 1) | 1);//2x+1
}
int main(){
scanf("%d",&n);
for(int i = 0;i
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
PAT A 1049. Counting Ones (30)제목 The task is simple: given any positive integer N, you are supposed to count the total number of 1's in the decimal fo...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.