• 1064 Complete Binary Search Tree


    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:

    1. 10
    2. 1 2 3 4 5 6 7 8 9 0

    Sample Output:

    6 3 8 1 5 7 9 0 2 4

    对于BST,其中序遍历是非递减数列,所以先从小到大排序,按照中序遍历来建树,然后按序号输出(即层序遍历)即可: 

    1. #include
    2. #include
    3. using namespace std;
    4. int a[1010], n, ans[1010], cnt;
    5. void dfs(int x) {
    6. if (x <= n) {
    7. dfs(x * 2);
    8. ans[x] = a[cnt++];
    9. dfs(x * 2 + 1);
    10. }
    11. }
    12. int main() {
    13. cin >> n;
    14. for (int i = 0; i < n; i++) {
    15. cin >> a[i];
    16. }
    17. sort(a, a + n);
    18. dfs(1);
    19. for (int i = 1; i <= n; i++) {
    20. cout << ans[i];
    21. if (i != n) {
    22. cout << ' ';
    23. }
    24. }
    25. return 0;
    26. }

     

  • 相关阅读:
    sCrypt 现在支持 Ordinals 了
    二 Pytorch中的asutograd
    Vue学习之--------Vue中自定义插件(2022/8/1)
    CSRF(跨站请求伪造)攻击演示
    springcloudalibaba架构(25):RocketMQ事务消息
    算法leetcode|87. 扰乱字符串(rust重拳出击)
    HTML+CSS大作业:使用html设计一个简单好看的公司官网首页 浮动布局
    gcc编译选项
    跨境电商收款账号一样会关联吗?谁能告诉?
    LeetCode 75 - 01 : 最小面积矩形
  • 原文地址:https://blog.csdn.net/weixin_53199925/article/details/126075975