[LeetCode]题解(python):096-Unique Binary Search Trees

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode]题解(python):096-Unique Binary Search Trees相关的知识,希望对你有一定的参考价值。

题目来源:

  https://leetcode.com/problems/unique-binary-search-trees/


 

题意分析:

  给定一个整数n,返回所有中序遍历是1到n的树的可能。


 

题目思路:

  这是动态规划的题目。选定了第k个为根节点,那么所有的可能就是ans[k-1] * ans[n -k]其中,ans[i]代表i整数i一共有ans[i]种可能。


 

代码(python):

  

技术分享
class Solution(object):
    def numTrees(self, n):
        """
        :type n: int
        :rtype: int
        """
        ans = [0 for i in range(n + 1)]
        ans[0],ans[1] = 1,1
        for i in range(2,n+1):
            for j in range(i/2):
                ans[i] += ans[j]*ans[i - 1 - j]
            ans[i] *= 2
            if i % 2 == 1:
                ans[i] += ans[i/2]*ans[i/2]
        return ans[n]
View Code

 

以上是关于[LeetCode]题解(python):096-Unique Binary Search Trees的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode-096-不同的二叉搜索树

ARC096E Everything on It 容斥原理

AtCoderARC096(C - F)

极客大挑战2019-http题解

[LeetCode]题解(python):100 Same Tree

[LeetCode]题解(python):112 Path Sum