mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-26 13:06:28 +08:00
22 lines
431 B
Go
22 lines
431 B
Go
// File: preorder_traversal_i_compact.go
|
|
// Created Time: 2023-05-09
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
package chapter_backtracking
|
|
|
|
import (
|
|
. "github.com/krahets/hello-algo/pkg"
|
|
)
|
|
|
|
/* 前序遍历:例题一 */
|
|
func preOrderI(root *TreeNode, res *[]*TreeNode) {
|
|
if root == nil {
|
|
return
|
|
}
|
|
if (root.Val).(int) == 7 {
|
|
// 记录解
|
|
*res = append(*res, root)
|
|
}
|
|
preOrderI(root.Left, res)
|
|
preOrderI(root.Right, res)
|
|
}
|