Leetcode 96. Unique Binary Search Trees

22 篇文章 0 订阅

Catalan numbers.

/**
 * # of binary trees = (# of trees on LHS) * (# of choices as root) * (# of trees on RHS) 
 * let c[n] be the total # of binary trees
 * c[0] = c[1] = 1
 * choose 1 as root, no element on the left sub-tree. n-1 elements on the right sub-tree.
 * Choose 2 as root, 1 element on the left sub-tree. n-2 elements on the right sub-tree.
 * Choose 3 as root, 2 element on the left sub-tree. n-3 elements on the right sub-tree.
 * Choose i as root, i-1 elements on the left sub-tree. n-i elements on the right sub-tree.
 * therefore c[n] = c[0]*c[n-1] + c[1]*c[n-2] + ... + c[i-1]*c[n-i] + ... + c[n-1]*c[0]
 *                = Ec[i-1]c[n-i] 1<=i<=n
 */ 
public class Solution {
    public int numTrees(int n) {
        int[] c = new int[n+1];
        c[0] = c[1] = 1;
        for (int i=2; i<n+1; i++) {
            for (int j=1; j<=i; j++) 
                c[i] += c[j-1]*c[i-j];
        }
        return c[n];
    }
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值