Leetcode Unique Binary Search Trees

OpenSoucre發表於2014-07-01

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

題目的的意思是給出n個節點,求出有多少不同的二叉樹,實際是計算卡特蘭數
可以參考
二叉樹卡特蘭數拉特蘭數的計算

卡特蘭數的計算公式是


迭代或者遞迴實現都可以
class Solution {
public:
    int catalan(int n){
        if(n == 1) return 1;
        else return 2*(2*n-1)*catalan(n-1)/(n+1);
    }
    
    int numTrees(int n) {
        return catalan(n);
    }
};

 

 

相關文章