zoukankan      html  css  js  c++  java
  • 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;
        }
    }
  • 相关阅读:
    玩转手工测试之客户端产品手工测试提效实践
    接口测试常用工具及测试方法(新手篇)
    我北漂 7 年,再也不打工了!
    测试人如何高效地设计自动化测试框架?
    你这样,测试人员不能活了。。。
    如何优雅地记录操作日志?
    C#String.IndexOf检索字符串中字符出现的次数
    C#基础之数组
    C#基础之is,as关键字
    C#委托与事件
  • 原文地址:https://www.cnblogs.com/fatttcat/p/10201331.html
Copyright © 2011-2022 走看看