Modify the problem of preorder_traversal_iii

This commit is contained in:
krahets
2023-07-19 16:37:12 +08:00
parent 4e13755023
commit c54536d1a1
10 changed files with 15 additions and 3 deletions

View File

@ -19,6 +19,7 @@ func preOrderIII(root *TreeNode, res *[][]*TreeNode, path *[]*TreeNode) {
if int(root.Val) == 7 {
// 记录解
*res = append(*res, *path)
return
}
preOrderIII(root.Left, res, path)
preOrderIII(root.Right, res, path)