题解 | #实现二叉树先序,中序和后序遍历# | 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) } }