天机阁

590. N 叉树的后序遍历

2022-07-10 · 2 min read
LeetCode

题目

给定一个 n 叉树的根节点  root ,返回 其节点值的 **后序遍历 ** 。

n 叉树 在输入中按层序遍历进行序列化表示,每组子节点由空值 null 分隔(请参见示例)。

难度:🌟🌟

示例 1:

输入:root = [1,null,3,2,4,null,5,6]
输出:[1,3,5,6,2,4]

示例 2:

输入:root = [1,null,2,3,4,5,null,null,6,7,null,8,null,9,10,null,null,11,null,12,null,13,null,null,14]
输出:[1,2,3,6,7,11,14,4,8,12,5,9,13,10]

提示:

  • 节点总数在范围 [0, 104]内
  • 0 <= Node.val <= 104
  • n 叉树的高度小于或等于 1000

题解

使用遍历的思想,将遍历过程中的节点存储在外部变量中,注意“存储节点值”的逻辑操作位置。
前序遍历 - 在递归调用之前保存节点值
后序遍历 - 在递归调用之后保存节点值

代码实现

/**
 * Definition for a Node.
 * type Node struct {
 *     Val int
 *     Children []*Node
 * }
 */

func postorder(root *Node) (res []int) {
	if root == nil {
		return nil
	}
	var postorderHelper func(node *Node)
	postorderHelper = func(node *Node) {
		if node == nil {
			return
		}
		for _, child := range node.Children {
			postorderHelper(child)
		}
		res = append(res, node.Val)
		return
	}
	postorder(root)
	return
}