mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 12:26:29 +08:00
1623e3c6a8
* ci(kotlin): Add workflow file. * Update kotlin.yml * style(kotlin): value -> _val --------- Co-authored-by: Yudong Jin <krahets@163.com>
51 lines
No EOL
1.1 KiB
Kotlin
51 lines
No EOL
1.1 KiB
Kotlin
/**
|
|
* File: preorder_traversal_ii_compact.kt
|
|
* Created Time: 2024-01-25
|
|
* Author: curtishd (1023632660@qq.com)
|
|
*/
|
|
|
|
package chapter_backtracking.preorder_traversal_ii_compact
|
|
|
|
import utils.TreeNode
|
|
import utils.printTree
|
|
|
|
var path: MutableList<TreeNode>? = null
|
|
var res: MutableList<MutableList<TreeNode>>? = null
|
|
|
|
/* 前序遍历:例题二 */
|
|
fun preOrder(root: TreeNode?) {
|
|
if (root == null) {
|
|
return
|
|
}
|
|
// 尝试
|
|
path!!.add(root)
|
|
if (root._val == 7) {
|
|
// 记录解
|
|
res!!.add(path!!.toMutableList())
|
|
}
|
|
preOrder(root.left)
|
|
preOrder(root.right)
|
|
// 回退
|
|
path!!.removeAt(path!!.size - 1)
|
|
}
|
|
|
|
/* Driver Code */
|
|
fun main() {
|
|
val root = TreeNode.listToTree(mutableListOf(1, 7, 3, 4, 5, 6, 7))
|
|
println("\n初始化二叉树")
|
|
printTree(root)
|
|
|
|
// 前序遍历
|
|
path = mutableListOf()
|
|
res = mutableListOf()
|
|
preOrder(root)
|
|
|
|
println("\n输出所有根节点到节点 7 的路径")
|
|
for (path in res!!) {
|
|
val _vals = mutableListOf<Int>()
|
|
for (node in path) {
|
|
_vals.add(node._val)
|
|
}
|
|
println(_vals)
|
|
}
|
|
} |