-
Notifications
You must be signed in to change notification settings - Fork 20
/
UniqueBinarySearchTreesII.kt
56 lines (49 loc) · 1.34 KB
/
UniqueBinarySearchTreesII.kt
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
* Given an integer n, generate all structurally unique BST's (binary search trees) that store values 1...n.
*
* For example,
* Given n = 3, your program should return all 5 unique BST's shown below.
*
* 1 3 3 2 1
* \ / / / \ \
* 3 2 1 1 3 2
* / / \ \
* 2 1 2 3
*
* Accepted.
*/
class UniqueBinarySearchTreesII {
fun generateTrees(n: Int): List<TreeNode?> {
val list = mutableListOf<TreeNode>()
return if (n <= 0) {
list
} else gen(1, n)
}
private fun gen(start: Int, end: Int): List<TreeNode?> {
val list = mutableListOf<TreeNode?>()
if (start > end) {
list.add(null)
return list
}
if (start == end) {
list.add(TreeNode(start))
return list
}
for (i in start..end) {
for (m in gen(start, i - 1)) {
gen(i + 1, end).mapTo(list) {
TreeNode(i).apply {
left = m
right = it
}
}
}
}
return list
}
data class TreeNode(
var `val`: Int,
var left: TreeNode? = null,
var right: TreeNode? = null
)
}