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

[leetcode]Unique Binary Search Trees

时间:2014-08-16 00:59:29      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   strong   for   ar   

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。跟这道题比起来[leetcode]Unique Binary Search Trees II,弱爆了。

代码如下:

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

 

[leetcode]Unique Binary Search Trees,布布扣,bubuko.com

[leetcode]Unique Binary Search Trees

标签:style   blog   http   color   io   strong   for   ar   

原文地址:http://www.cnblogs.com/huntfor/p/3915906.html

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