1064. Complete Binary Search Tree (30)

时间限制
100 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties:

  • The left subtree of a node contains only nodes with keys less than the node's key.
  • The right subtree of a node contains only nodes with keys greater than or equal to the node's key.
  • Both the left and right subtrees must also be binary search trees.

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

思路
1.二叉搜索树的中序遍历是一个递增的序列,所以先将输入后的节点数组升序排序
2.完全二叉树以数组描述时,索引为i的节点的左右孩子的索引分别为2 * i和2 * i + 1。
3.将排好序的节点以中序遍历的形式来构造完全二叉搜索树。
4.遍历构造好的数组即为这棵树的层次遍历
代码
#include<iostream>
#include<algorithm>
#include<vector>
using namespace std; const int MAX = ;
vector<int> nodes(MAX);
vector<int> tree(MAX);
int N,index; //number of nodes && index of Nodes void buildtree(int root)
{
if(root > N)
return;
int left = root*,right = root* + ;
buildtree(left);
tree[root] = nodes[index++];
buildtree(right); } int main()
{
while(cin >> N)
{
//input
for(int i = ; i <= N;i++)
cin >> nodes[i];
sort(nodes.begin() + ,nodes.begin() + + N);
//build tree
index = ;
buildtree(); //print tree
cout << tree[];
for(int i = ;i <= N;i++)
cout <<" " << tree[i];
cout << endl;
}
}
 

最新文章

  1. :nth-child
  2. Find a point on a &#39;line&#39; between two Vector3
  3. C#下搭建文件格式转换服务器
  4. Javascript中的Prototype到底是啥
  5. Show Roles Assigned to a Specific User
  6. .Net中的socket编程例子
  7. Tkinter教程之Button篇(1)
  8. 取出block所对应的hash值
  9. FirstOrDefault
  10. 曾经记录——asp.net中的点滴
  11. CentOS 6.5 IP 设置
  12. PHP自定义错误处理
  13. OC中两个关键字的作用:@property和@synthesize
  14. JQuery select option append
  15. iOS UITableView的多选
  16. 基于python的种子搜索网站-项目部署
  17. Java多线程并发最佳实践
  18. C++中的抽象类
  19. webpack 相关插件及作用(表格)
  20. live2d添加网页看板娘

热门文章

  1. session效率
  2. WebService开发指南
  3. mongodb系列之--mongodb 主从配置与说明
  4. VC工程的.gitignore模板
  5. WinCE系统声音定制
  6. HBase数据字典
  7. How tomcat works 读书笔记十三 Host和Engine
  8. 恶补web之三:http学习
  9. 恶补web之一:html学习(1)
  10. Centos下安装mysql 和挂载硬盘