g0001_0100.s0095_unique_binary_search_trees_ii.Solution.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-kotlin Show documentation
Show all versions of leetcode-in-kotlin Show documentation
Kotlin-based LeetCode algorithm problem solutions, regularly updated
package g0001_0100.s0095_unique_binary_search_trees_ii
// #Medium #Dynamic_Programming #Tree #Binary_Tree #Backtracking #Binary_Search_Tree
// #2023_07_10_Time_167_ms_(100.00%)_Space_36.6_MB_(100.00%)
import com_github_leetcode.TreeNode
/*
* Example:
* var ti = TreeNode(5)
* var v = ti.`val`
* Definition for a binary tree node.
* class TreeNode(var `val`: Int) {
* var left: TreeNode? = null
* var right: TreeNode? = null
* }
*/
class Solution {
fun generateTrees(n: Int): List {
var result: MutableList = ArrayList()
result.add(TreeNode(1))
for (i in 2..n) {
val nresult: MutableList = ArrayList()
for (r in result) {
var node = TreeNode(i, r, null)
nresult.add(node)
var previous: TreeNode? = r
while (previous != null) {
node = TreeNode(i)
val cr: TreeNode? = copy(r)
insert(cr, node, previous)
previous = node.left
nresult.add(cr)
}
}
result = nresult
}
return result
}
private fun insert(dest: TreeNode?, n: TreeNode, from: TreeNode) {
if (dest != null && dest.`val` == from.`val`) {
val h: TreeNode? = dest.right
dest.right = n
n.left = h
return
}
if (dest != null) {
insert(dest.right, n, from)
}
}
private fun copy(n: TreeNode?): TreeNode? {
return if (n == null) {
null
} else { TreeNode(n.`val`, copy(n.left), copy(n.right)) }
}
}