`
huntfor
  • 浏览: 205371 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

[leetcode]Unique Binary Search Trees

 
阅读更多

新博文地址:[leetcode]Unique Binary Search Trees

http://oj.leetcode.com/problems/unique-binary-search-trees/

Given n, how many structurally unique BST's (binary search trees) that store values 1...n?

For example,
Given n = 3, there are a total of 5 unique BST's.

1             3     3      2      1
  \           /      /       /  \       \
   3       2     1      1    3       2
  /        /         \                      \
2       1           2                     3

 刚拿到这道题,直觉是树,但是看了之后发现完全与树关系不大,是个很典型的DP问题:

比如说有1~n,n个节点,我们选择一个中间节点k为根节点,那么左子树就变成了子问题 1 ~ (k-1)有几种构造法,右子树就变成了(k + 1) ~ n有几种构造法,左子树跟右子树的组合数,就是n个节点的构造数;

即f(n) =  sum{ f(k - 1) * f( n - k) | k = 1 ~ n }

容易知道f(0) = f(1) = 1; f(2) = 2;

接下来的编程就容易了:

    public int numTrees(int n) {
        	if(n <= 1){
			return 1;
		}
                int[] num = new int[n + 1];
		num[0] = 1;
		num[1] = 1;
		num[2] = 2;

		for(int i = 3; i <= n; i++){
			for(int j = 1; j <= i; j++){
				num[i] += num[j - 1] * num[i - j];
			}
		}
		return num[n];
    }

虽然AC,但是 时间复杂度略高,不知道有没有O(n)的解法

分享到:
评论

相关推荐

    python-leetcode题解之095-Unique-Binary-Search-Trees-II

    今天,我们聚焦于LeetCode上的第95题“Unique Binary Search Trees II”,该题目要求参与者使用给定的数值序列构建所有可能的不同二叉搜索树(BSTs)。二叉搜索树是一种特殊的二叉树,其中每个节点都满足以下性质:...

    python-leetcode题解之096-Unique-Binary-Search-Trees

    题目描述:096-Unique Binary Search Trees(不同的二叉搜索树)是LeetCode上的一个算法问题,编号96。问题的目标是找出给定节点数n的所有不同的二叉搜索树(BST)的个数。二叉搜索树是一类特殊的二叉树,其中每个...

    c语言-leetcode题解之0095-unique-binary-search-trees-ii.zip

    LeetCode作为一个广泛使用的在线编程平台,提供了众多关于二叉搜索树的问题,其中问题编号0095 “Unique Binary Search Trees II”是一个典型的问题,旨在考察解题者对二叉搜索树性质的理解以及递归思维的应用。...

    c语言-leetcode题解之0096-unique-binary-search-trees.zip

    而“unique binary search trees”这一概念,则通常出现在动态规划的上下文中。这个问题在LeetCode上被标记为第96题,要求编写程序来计算给定数字n所能构成的不同形状的唯一二叉搜索树(BST)的数量。这里的关键在于...

    js-leetcode题解之95-unique-binary-search-trees-ii.js

    在LeetCode中,问题编号95的题目就是要求生成给定节点数的所有可能的唯一二叉搜索树(Unique Binary Search Trees II)。该问题是一个典型的递归问题,可以通过深度优先搜索(DFS)算法来解决。 问题的描述是这样的...

    js-leetcode题解之96-unique-binary-search-trees.js

    代码示例中的js_leetcode题解之96-unique-binary-search-trees.js,会提供一个具体的解决方案。这个解决方案会涉及如何初始化dp数组,如何通过循环和乘法操作来填充数组,以及最终返回dp[n]的结果,即为题目所求的...

    LeetCode最全代码

    * [Binary Search Tree](https://github.com/kamyu104/LeetCode#binary-search-tree) * [Breadth-First Search](https://github.com/kamyu104/LeetCode#breadth-first-search) * [Depth-First Search]...

    leetcode答案-LeetCodeSolution:这是LeetCode网站问题的解决方案集

    Unique Binary Search Trees 本题参考了 里面的*How Many Binary Trees Are There?*章节。 The first few terms: C(0) = 1 C(1) = C(0)C(0) = 1 C(2) = C(0)C(1) + C(1)C(0) = 2 C(3) = C(0)C(2) + C(1)C(1)

    leetcodepython001-Algorithm:关于数据结构和算法的问题(Leetcode、编程之美和课程作业)

    leetcode python 001 Algorithm 用python和java解决了Leetcode上部分问题,另外还有对常规算法和机器学习算法的一些实现,例如用遗传算法解物流配送问题。...Search Trees Python 2017/11/28 Medium 09

    leetcode卡-leetcode:Python

    【描述】中的"Unique Binary Search Trees"提到了一种特定的LeetCode问题,即"唯一的二叉搜索树"。这个问题要求计算给定整数n的所有不同结构的二叉搜索树的数量。二叉搜索树是一种特殊的二叉树,其中每个节点的左...

    算法-leetcode-剑指offer上的题很多

    - **唯一二叉搜索树(Unique Binary Search Trees)**: 不同的二叉搜索树的数量。 #### 位操作技巧 - **更新位(Update Bits)**: 在一个整数中更新若干位。 - **快速幂(Fast Power)**: 快速计算一个数的幂。 #### ...

    leetcode添加元素使和等于-Leetcode-tree:力码树

    leetcode添加元素使和等于 Leetcode-tree 94题 Binary ...Search Trees 这道题我们使用了动态规划的方法。说到动态规划我们这里先总结一下动态规划类型的题该如何做。 动态规划题目特点: 计数型: -有

    leetcode1477-coding-for-fun:编码乐趣

    96.unique-binary-search-trees.cpp [TODO] 70. 爬楼梯.cpp [TODO] 746. min-cost-climbing-stairs.cpp 第 4 天: [待办事项] leetcode/1143。 最长公共子序列.cpp 第 5 天: [待办事项] leetcode/221。 最大平方....

    算法学习笔记

    - Unique Binary Search Trees:不同的二叉搜索树的个数。 - Happy Number:一个“快乐数”定义为:对于一个正整数,每一次将该数替换为它每个位置上的数字的平方和,然后重复这个过程直到这个数变为1,也可能是无限...

Global site tag (gtag.js) - Google Analytics