LeetCode No.143 | StriveZs的博客

LeetCode No.143

LeetCode第144题—二叉树的前序遍历

最近刚从雁栖湖搬到中关村。各方面和自己的预期很有差异。可能是还是没有适应。

自己代码的开源仓库:click here 欢迎Star和Fork :)

题目描述

给你二叉树的根节点 root ,返回它节点值的 前序 遍历。

figure.3

1
2
3
4
5
6
7
8
9
10
11
12
13
示例 1

输入:root = [1,null,2,3]
输出:[1,2,3]
示例 2

输入:root = []
输出:[]

示例 3

输入:root = [1]
输出:[1]

figure.2

1
2
3
示例 4
输入:root = [1,2]
输出:[1,2]

figure.1

1
2
3
4
5
6
7
8
示例 5
输入:root = [1,null,2]
输出:[1,2]

提示:

树中节点数目在范围 [0, 100] 内
-100 <= Node.val <= 100
StriveZs wechat
Hobby lead  creation, technology change world.