第26856题 单选题
补全Python实现的二叉树前序深度优先搜索(DFS)代码,横线处应填入的是?

现有Python实现的二叉树前序DFS代码如下,请补全横线处内容:

from typing import List, Optional

class TreeNode:
    def __init__(self, val=0, left=None, right=None):
        self.val = val
        self.left = left
        self.right = right

def dfs_preorder(root: Optional[TreeNode], result: List[int]) -> None:
    if root is None:
        return

_________________________
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析