1 Star 0 Fork 0

陈世杰/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
144.二叉树的前序遍历.py 1.43 KB
一键复制 编辑 原始数据 按行查看 历史
陈世杰 提交于 2022-12-07 18:10 . 111 & 144
#
# @lc app=leetcode.cn id=144 lang=python3
#
# [144] 二叉树的前序遍历
#
# https://leetcode.cn/problems/binary-tree-preorder-traversal/description/
#
# algorithms
# Easy (71.23%)
# Likes: 954
# Dislikes: 0
# Total Accepted: 756.4K
# Total Submissions: 1.1M
# Testcase Example: '[1,null,2,3]'
#
# 给你二叉树的根节点 root ,返回它节点值的 前序 遍历。
#
#
#
# 示例 1:
#
#
# 输入:root = [1,null,2,3]
# 输出:[1,2,3]
#
#
# 示例 2:
#
#
# 输入:root = []
# 输出:[]
#
#
# 示例 3:
#
#
# 输入:root = [1]
# 输出:[1]
#
#
# 示例 4:
#
#
# 输入:root = [1,2]
# 输出:[1,2]
#
#
# 示例 5:
#
#
# 输入:root = [1,null,2]
# 输出:[1,2]
#
#
#
#
# 提示:
#
#
# 树中节点数目在范围 [0, 100] 内
# -100
#
#
#
#
# 进阶:递归算法很简单,你可以通过迭代算法完成吗?
#
#
# @lc code=start
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def preorderTraversal(self, root: Optional[TreeNode]) -> List[int]:
def preorder(root: TreeNode):
if not root:
return
res.append(root.val)
preorder(root.left)
preorder(root.right)
res = list()
preorder(root)
return res
# @lc code=end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xingwozhonghua/leetcode.git
git@gitee.com:xingwozhonghua/leetcode.git
xingwozhonghua
leetcode
leetcode
master

搜索帮助