A1115 Counting Nodes in a Binary Search Tree

摘要
Title: A1115 Counting Nodes in a Binary Search Tree
Tag: BST
Memory Limit: 64 MB
Time Limit: 1000 ms

Powered by:NEFU AB-IN

Link

A1115 Counting Nodes in a Binary Search Tree

  • 题意

    Insert a sequence of numbers into an initially empty binary search tree. Then you are supposed to count the total number of nodes in the lowest 2 levels of the resulting tree.

  • 思路

    二叉树的建树与插入,牢记函数即可

  • 代码

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    /*
    * @Author: NEFU AB-IN
    * @Date: 2022-09-13 20:50:59
    * @FilePath: \GPLT\A1115\A1115.cpp
    * @LastEditTime: 2022-09-13 21:18:02
    */
    #include <bits/stdc++.h>
    using namespace std;
    #define N n + 100
    #define SZ(X) ((int)(X).size())
    #define IOS \
    ios::sync_with_stdio(false); \
    cin.tie(nullptr); \
    cout.tie(nullptr)
    #define DEBUG(X) cout << #X << ": " << X << '\n'
    typedef pair<int, int> PII;

    #undef N
    const int N = 1e5 + 10;

    // #undef int

    signed main()
    {
    IOS;
    int n;
    cin >> n;
    vector<int> l(N), r(N), v(N);
    // BST 结点编号从1开始
    int root = 0, idx = 0;

    function<void(int &, int)> insert = [&](int &u, int w) {
    if (!u)
    {
    u = ++idx;
    v[u] = w;
    return;
    }
    if (v[u] >= w)
    insert(l[u], w);
    else
    insert(r[u], w);
    };

    for (int i = 0; i < n; ++i)
    {
    int x;
    cin >> x;
    insert(root, x);
    }

    int mx = 0;
    vector<int> ans(N);
    function<void(int, int)> dfs = [&](int u, int dep) {
    if (!u)
    return;
    mx = max(mx, dep);
    ans[dep]++;
    dfs(l[u], dep + 1);
    dfs(r[u], dep + 1);
    };

    dfs(root, 0);

    printf("%d + %d = %d", ans[mx], ans[mx - 1], ans[mx - 1] + ans[mx]);
    return 0;
    }
使用搜索:谷歌必应百度