1 Star 0 Fork 0

陈世杰/leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
144.二叉树的前序遍历.go 1.37 KB
一键复制 编辑 原始数据 按行查看 历史
陈世杰 提交于 2022-12-07 18:10 . 111 & 144
/*
* @lc app=leetcode.cn id=144 lang=golang
*
* [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.
* type TreeNode struct {
* Val int
* Left *TreeNode
* Right *TreeNode
* }
*/
func preorderTraversal(root *TreeNode) (vals []int) {
var preorder func(*TreeNode)
preorder = func(node *TreeNode){
if node == nil {
return
}
vals = append(vals,node.Val)
preorder(node.Left)
preorder(node.Right)
}
preorder(root)
return
}
// @lc code=end
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/xingwozhonghua/leetcode.git
git@gitee.com:xingwozhonghua/leetcode.git
xingwozhonghua
leetcode
leetcode
master

搜索帮助