• 590. N-ary Tree Postorder Traversal


    Given an n-ary tree, return the postorder traversal of its nodes' values.

    For example, given a 3-ary tree:

    Return its postorder traversal as: [5,6,3,2,4,1].

    Note:

    Recursive solution is trivial, could you do it iteratively?

    M1: recursive

    time: O(n), space: O(height)

    /*
    // Definition for a Node.
    class Node {
        public int val;
        public List<Node> children;
    
        public Node() {}
    
        public Node(int _val,List<Node> _children) {
            val = _val;
            children = _children;
        }
    };
    */
    class Solution {
        public List<Integer> postorder(Node root) {
            List<Integer> res = new ArrayList<>();
            postorder(root, res);
            return res;
        }
        
        public void postorder(Node root, List<Integer> res) {
            if(root == null) {
                return;
            }
            
            for(int i = 0; i < root.children.size(); i++) {
                postorder(root.children.get(i), res);
            }
            res.add(root.val);
        }
    }

    M2: iterative

    time: O(n), space: O(n)  -- depending on the tree structure, worst case: the stack can keep up the whole tree nodes

    /*
    // Definition for a Node.
    class Node {
        public int val;
        public List<Node> children;
    
        public Node() {}
    
        public Node(int _val,List<Node> _children) {
            val = _val;
            children = _children;
        }
    };
    */
    class Solution {
        public List<Integer> postorder(Node root) {
            List<Integer> res = new ArrayList<>();
            if(root == null) {
                return res;
            }
            Stack<Node> s = new Stack<>();
            
            s.add(root);
            while(!s.isEmpty()) {
                Node tmp = s.pop();
                res.add(0, tmp.val);
                for(Node n : tmp.children) {
                    if(n != null) {
                        s.push(n);
                    }
                }
            }
            
            return res;
        }
    }

    二刷:

    class Solution {
        public List<Integer> postorder(Node root) {
            List<Integer> res = new ArrayList<>();
            if(root == null) {
                return res;
            }
            LinkedList<Node> stack = new LinkedList<>();
            stack.offerFirst(root);
            while(!stack.isEmpty()) {
                Node cur = stack.pollFirst();
                res.add(0, cur.val);
                for(int i = 0; i < cur.children.size(); i++) {
                    stack.offerFirst(cur.children.get(i));
                }
            }
            return res;
        }
    }
  • 相关阅读:
    中国内地、台湾、香港、澳门和国外DNS服务器地址列表
    科学、道法、哲学
    Away 3d 基本属性
    away 3d的一些问题
    Adobe Flash CC 2014 下载及破解
    html5结合flash实现视频文件在所有主流浏览器兼容播放
    Html wmode 标签参数详解
    九宫格
    flash/flex 编译错误汇总
    Redis在windows下安装过程(转)
  • 原文地址:https://www.cnblogs.com/fatttcat/p/10201331.html
Copyright © 2020-2023  润新知