难度中等537
给定一个整数 n,求以 1 … n 为节点组成的二叉搜索树有多少种?
示例:
1 2 3 4 5 6 7 8 9 10
| 输入: 3 输出: 5 解释: 给定 n = 3, 一共有 5 种不同结构的二叉搜索树:
1 3 3 2 1 \ / / / \ \ 3 2 1 1 3 2 / / \ \ 2 1 2 3
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| class Solution { public: int numTrees(int n) { vector<int>dp(n+1,0); dp[0]=1; dp[1]=1; if(n<2){ return dp[n]; } for(int i=2;i<=n;i++){ for(int j=0;j<i;j++){ dp[i]+=dp[j]*dp[i-j-1]; } } return dp[n]; } };
|