码迷,mamicode.com
首页 > 其他好文 > 详细

【LeetCode题目记录-6】1~n作为key可以有多少种二叉搜索树(BST)的形式

时间:2014-09-15 17:49:19      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:1n作为key可以有多少种二叉搜索树的形

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

【分析-原创】这是卡特兰数(可以证明),自底向上进行动态规划。

    

public int numTrees(int n) {
        if (n == 0 || n == 1)
            return 1;
        int[] catalan = new int[n + 1];
        catalan[0] = catalan[1] = 1;
        for (int i = 2; i <= n; i++) {
            for (int j = 0; j < i; j++) {
                catalan[i] += catalan[j] * catalan[i - 1 - j];
            }
        }
        return catalan[n];
    }

【LeetCode题目记录-6】1~n作为key可以有多少种二叉搜索树(BST)的形式

标签:1n作为key可以有多少种二叉搜索树的形

原文地址:http://blog.csdn.net/brillianteagle/article/details/39294801

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!