刷题日记Day6 | BST计算合法BST

Posted 结构化思维wz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了刷题日记Day6 | BST计算合法BST相关的知识,希望对你有一定的参考价值。

96.不同的二叉搜索树


解答:

class Solution 
    // 备忘录
    int[][] memo;

    int numTrees(int n) 
        // 备忘录的值初始化为 0
        memo = new int[n + 1][n + 1];
        return count(1, n);
    

    int count(int lo, int hi) 
        if (lo > hi) return 1;
        // 查备忘录
        if (memo[lo][hi] != 0) 
            return memo[lo][hi];
        

        int res = 0;
        for (int mid = lo; mid <= hi; mid++) 
            int left = count(lo, mid - 1);
            int right = count(mid + 1, hi);
            res += left * right;
        
        // 将结果存入备忘录
        memo[lo][hi] = res;

        return res;
    


以上是关于刷题日记Day6 | BST计算合法BST的主要内容,如果未能解决你的问题,请参考以下文章

刷题日记Day4 | BST

AC日记——Broken BST codeforces 797d

LeetCode日记——数据结构树专题(遍历,BST,Tire)

二叉树搜索子树的最大键值和

BST的合法性:validate-binary-search-tree

Leetcode刷题100天—653. 两数之和 IV - 输入 BST( 二叉树)—day35