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

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

    进阶:

    递归法很简单,你可以使用迭代法完成此题吗?

    示例 1:
    image.png

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

    输入: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]

    提示:

    N 叉树的高度小于或等于 1000
    节点总数在范围 [0, 10^4] 内


    1. class Solution {
    2. /**
    3. dfs求解
    4. */
    5. List<Integer> res = new ArrayList<>();
    6. public List<Integer> postorder(Node root) {
    7. if (root == null) return res;
    8. dfs(root);
    9. //最后加上root.val
    10. res.add(root.val);
    11. return res;
    12. }
    13. public void dfs(Node root) {
    14. if (root == null) return;
    15. for (Node child : root.children) {
    16. dfs(child);
    17. res.add(child.val);
    18. }
    19. }
    20. }
    1. class Solution {
    2. public List<Integer> postorder(Node root) {
    3. List<Integer> res = new ArrayList<>();
    4. if (root == null) return res;
    5. Deque<Node> stack = new LinkedList<>();
    6. stack.push(root);
    7. while (!stack.isEmpty()) {
    8. Node node = stack.poll();
    9. res.add(node.val);
    10. for (Node child : node.children) {
    11. stack.push(child);
    12. }
    13. }
    14. //前序遍历是 根左右 上边是根右左 所以需要翻转一下数组即为后序遍历
    15. Collections.reverse(res);
    16. return res;
    17. }
    18. }