【LeetCode】590. N 叉树的后序遍历

590. N 叉树的后序遍历

知识点:二叉树;递归;dfs

题目描述

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

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

示例

图1
图2


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

示例 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]
输出:[2,6,14,11,7,3,12,8,4,13,9,10,5,1]



解法一:dfs

树的题目一般都要用递归;
对于每个根节点,先去dfs其孩子节点,然后再添加它的值;

"""
# Definition for a Node.
class Node:
    def __init__(self, val=None, children=None):
        self.val = val
        self.children = children
"""

class Solution:
    def dfs(self, root, res):
        if not root:
            return 
        for child in root.children:
            self.dfs(child, res)
        res.append(root.val)
    def postorder(self, root: 'Node') -> List[int]:
        res = []
        self.dfs(root, res)
        return res
posted @ 2022-04-15 11:10  Curryxin  阅读(21)  评论(0编辑  收藏  举报
Live2D