forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_96.java
34 lines (28 loc) · 831 Bytes
/
_96.java
1
2
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
30
31
32
33
34
package com.fishercoder.solutions;
/**
* 96. Unique Binary Search Trees
*
* 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
*/
public class _96 {
public static class Solution1 {
public int numTrees(int n) {
int[] G = new int[n + 1];
G[0] = G[1] = 1;
for (int i = 2; i <= n; ++i) {
for (int j = 1; j <= i; ++j) {
int temp = G[j - 1] * G[i - j];
G[i] = G[i] + temp;
}
}
return G[n];
}
}
}