代码随想录Day41| 343. 整数拆分 | 96. 不同的二叉搜索树

343. 整数拆分

        

class Solution {
public:
    int integerBreak(int n) {
        vector f(n+1,0);
        f[2]=1;
        for(int i=3;i<=n;i++){
            for(int j=1;j

       96. 不同的二叉搜索树

class Solution {
public:
    int numTrees(int n) {
        vector f(n+1,0);
        f[0]=1;
        for(int i=1;i<=n;i++){
            for(int j=1;j<=i;j++){
                f[i] += f[j-1]*f[i-j];
            }
        }
        return f[n];
    }
};

你可能感兴趣的:(算法题练习,算法,java,数据结构)