题解 | #实现二叉树先序,中序和后序遍历# | Go

实现二叉树先序,中序和后序遍历

https://www.nowcoder.com/practice/a9fec6c46a684ad5a3abd4e365a9d362

package main
import . "nc_tools"
/*
 * type TreeNode struct {
 *   Val int
 *   Left *TreeNode
 *   Right *TreeNode
 * }
 */

/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param root TreeNode类 the root of binary tree
 * @return int整型二维数组
*/
func threeOrders( root *TreeNode ) [][]int {
    ans := [][]int{{},{},{}}
    dfs(root, &ans)
    return ans
}

func dfs( node *TreeNode, ans *[][]int) {
    if node != nil {
        (*ans)[0] = append((*ans)[0], node.Val)
        dfs(node.Left, ans)
        (*ans)[1] = append((*ans)[1], node.Val)
        dfs(node.Right, ans)
        (*ans)[2] = append((*ans)[2], node.Val)
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
07-09 12:05
点赞 评论 收藏
分享
程序员小白条:找的太晚,别人都是大三实习,然后大四秋招春招的,你大四下了才去实习,晚1年
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务