构建一个完全二叉搜索树04-树6 Complete Binary Search Tree

根据给定的非负整数序列构建一个完全二叉搜索树,并输出其层次遍历序列。首先,根据给定的键构建树结构,然后对键进行排序并插入树中,以满足二叉搜索树的性质。最后,按照层次顺序遍历并打印树的所有节点值。
摘要由CSDN通过智能技术生成

题目

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

解答

本题是要构建一个完全二叉树,因此可以从搭建一个数组入手,如果起始节点的索引为0,则索引为n的节点的左儿子节点索引为 2 ∗ n + 1 2*n + 1 2n+1,右儿子节点为 2 ∗ n + 2 2*n + 2 2n+2。由此可以建立出没有值的树出来。

其次本题给出了所有元素的值,并要求满足二叉搜索树特性。二叉搜索树的中序遍历是从小到大输出的,我们已经有树了,也有值了,因此我们只需要把给出的值从小到大排序放进队列中,再对第一步中得到的树进行中序遍历,把队列的值一个一个放进去,即可完成填树。

最后层序遍历输出只需要按照数组索引顺序依次输出就可以了。

代码如下:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;

/**
 * @author Nino
 */

public class Main {
   
    static Queue<Integer> queue = new 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值