solution.md 2.8 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
# 不同的二叉搜索树
F
fix bug  
feilong 已提交
2

每日一练社区's avatar
每日一练社区 已提交
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
<div class="notranslate">
    <p>给你一个整数 <code>n</code> ,求恰由 <code>n</code> 个节点组成且节点值从 <code>1</code><code>n</code> 互不相同的 <strong>二叉搜索树</strong>
        有多少种?返回满足题意的二叉搜索树的种数。</p>

    <p>&nbsp;</p>

    <p><strong>示例 1:</strong></p>
    <img style="width: 600px; height: 148px;" src="https://assets.leetcode.com/uploads/2021/01/18/uniquebstn3.jpg"
        alt="">
    <pre><strong>输入:</strong>n = 3
<strong><br />输出:</strong>5
    </pre>

    <p><strong>示例 2:</strong></p>

    <pre><strong>输入:</strong>n = 1
<strong><br />输出:</strong>1
    </pre>

    <p>&nbsp;</p>

    <p><strong>提示:</strong></p>

    <ul>
        <li><code>1 &lt;= n &lt;= 19</code></li>
    </ul>
</div>
每日一练社区's avatar
每日一练社区 已提交
30
<p>以下<span style="color:red">错误</span>的选项是?</p>
F
fix bug  
feilong 已提交
31

每日一练社区's avatar
每日一练社区 已提交
32
## aop
F
fix bug  
feilong 已提交
33

每日一练社区's avatar
每日一练社区 已提交
34
### before
F
fix bug  
feilong 已提交
35

每日一练社区's avatar
每日一练社区 已提交
36
```c
每日一练社区's avatar
每日一练社区 已提交
37 38 39
#include <bits/stdc++.h>
using namespace std;
```
每日一练社区's avatar
每日一练社区 已提交
40

每日一练社区's avatar
每日一练社区 已提交
41
### after
F
fix bug  
feilong 已提交
42

每日一练社区's avatar
每日一练社区 已提交
43
```c
每日一练社区's avatar
每日一练社区 已提交
44 45 46 47

```

## 答案
F
fix bug  
feilong 已提交
48

每日一练社区's avatar
每日一练社区 已提交
49
```c
每日一练社区's avatar
每日一练社区 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
class Solution
{
public:
    int numTrees(int n)
    {
        if (n < 1)
        {
            return 0;
        }
        return numTrees(1, n);
    }
    int numTrees(int begin, int end)
    {
        if (begin > end)
        {
            return 1;
        }
        int sum = 0;
        for (int i = begin; i <= end; i++)
        {
            int left = numTrees(begin, i);
            int right = numTrees(i + 1, end);
            sum += left * right;
        }
        return sum;
    }
};
```
## 选项

F
fix bug  
feilong 已提交
80

每日一练社区's avatar
每日一练社区 已提交
81
### A
F
fix bug  
feilong 已提交
82

每日一练社区's avatar
每日一练社区 已提交
83
```c
每日一练社区's avatar
每日一练社区 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
class Solution
{
public:
    int numTrees(int n)
    {
        if (n < 2)
            return 1;
        else if (n == 3)
            return 5;
        else if (n == 4)
            return 14;
        else if (n == 5)
            return 42;
        else
        {
            int i, sum = 0, left, right;
            for (i = 0; i < n; i++)
            {
                left = i;
                right = n - i - 1;
                sum += numTrees(left) * numTrees(right);
            }
            return sum;
        }
    }
};
```

### B
F
fix bug  
feilong 已提交
113

每日一练社区's avatar
每日一练社区 已提交
114
```c
每日一练社区's avatar
每日一练社区 已提交
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
class Solution
{
public:
    int numTrees(int n)
    {
        if (n < 2)
            return 1;
        else
        {
            int i, sum = 0, left, right;
            for (i = 0; i < n; i++)
            {
                left = i;
                right = n - i - 1;
                sum += numTrees(left) * numTrees(right);
            }
            return sum;
        }
    }
};
```

### C
F
fix bug  
feilong 已提交
138

每日一练社区's avatar
每日一练社区 已提交
139
```c
每日一练社区's avatar
每日一练社区 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
class Solution
{
public:
    int numTrees(int n)
    {
        int dp[n + 1];
        memset(dp, 0, sizeof(dp));
        dp[0] = dp[1] = 1;

        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];
    }
};
```