-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path95. Unique Binary Search Trees II.java
More file actions
42 lines (35 loc) · 1.34 KB
/
95. Unique Binary Search Trees II.java
File metadata and controls
42 lines (35 loc) · 1.34 KB
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
35
36
37
38
39
40
41
42
//https://leetcode.com/problems/unique-binary-search-trees-ii/description/
class Solution {
public List<TreeNode> generateTrees(int n) {
if (n == 0) {
return new ArrayList<>();
}
Map<String, List<TreeNode>> memo = new HashMap<>();
return generateTreesHelper(1, n, memo);
}
private List<TreeNode> generateTreesHelper(int start, int end, Map<String, List<TreeNode>> memo) {
String key = start + "-" + end;
if (memo.containsKey(key)) {
return memo.get(key);
}
List<TreeNode> trees = new ArrayList<>();
if (start > end) {
trees.add(null);
return trees;
}
for (int rootVal = start; rootVal <= end; rootVal++) {
List<TreeNode> leftTrees = generateTreesHelper(start, rootVal - 1, memo);
List<TreeNode> rightTrees = generateTreesHelper(rootVal + 1, end, memo);
for (TreeNode leftTree : leftTrees) {
for (TreeNode rightTree : rightTrees) {
TreeNode root = new TreeNode(rootVal);
root.left = leftTree;
root.right = rightTree;
trees.add(root);
}
}
}
memo.put(key, trees);
return trees;
}
}