_0144

package
v0.0.0-...-a49be92 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 20, 2024 License: MIT Imports: 1 Imported by: 0

README

二叉树的前序遍历

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

示例 1:

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


**示例 2:**

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


**示例 3:**

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


**示例 4:**

![](https://assets.leetcode.com/uploads/2020/09/15/inorder_5.jpg)```
输入:root = [1,2]
输出:[1,2]

示例 5:

``` 输入:root = [1,null,2] 输出:[1,2]




**提示:**

* 树中节点数目在范围 `[0, 100]` 内
* `-100 <= Node.val <= 100`


**进阶:**递归算法很简单,你可以通过迭代算法完成吗?


Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL