题解 | #求二叉树的层序遍历#

求二叉树的层序遍历

https://www.nowcoder.com/practice/04a5560e43e24e9db4595865dc9c63a3

package main

import . "nc_tools"

/*
 * type TreeNode struct {
 *   Val int
 *   Left *TreeNode
 *   Right *TreeNode
 * }
 */

/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 *
 * @param root TreeNode类
 * @return int整型二维数组
 */


func levelOrder(root *TreeNode) [][]int {

	list := make([][]int, 0)
	Level(root, &list, 1)
	return list
}

// append扩容导致导致生成新数组
func Level(root *TreeNode, list *[][]int, depth int) {
	if root == nil {
		return
	}
	
    if len(*list) < depth {
        *list = append(*list, []int{root.Val})
    } else {
        (*list)[depth-1] = append((*list)[depth-1], root.Val)
    }
	depth++
	Level(root.Left, list, depth)
	Level(root.Right, list, depth)
	
}

全部评论
思想很简单,就是GOLANG带了指针,有点难受
点赞 回复 分享
发布于 2023-11-22 23:08 上海

相关推荐

Dream_coding:你是不是只投大厂了
点赞 评论 收藏
分享
02-24 10:34
门头沟学院 Java
已注销:之前发最美的女孩基本爱答不理,发最帅的hr终于有反馈了,女孩子也要自信起来
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务