• 非递归遍历二叉树


    public class Solution {
    
    
        public static void main(String[] args) {}
    
        public List<Integer> preOrderTravel(TreeNode root) {
            List<Integer> result = new ArrayList<>();
    
            if(root == null) {
                return result;
            }
    
            Stack<TreeNode> stack = new Stack<>();
            stack.push(root);
    
            while(!stack.isEmpty()) {
                TreeNode current = stack.pop();
    
                result.add(current.val);
    
                if(current.right != null) {
                    stack.push(current.right);
                }
    
                if(current.left != null) {
                    stack.push(current.left);
                }
            }
    
            return result;
        }
    
        public List<Integer> inOrderTravel(TreeNode root) {
            List<Integer> result = new ArrayList<>();
    
            if(root == null) {
                return result;
            }
    
            Stack<TreeNode> stack = new Stack<>();
    
            TreeNode p = root;
    
            while(p != null || !stack.isEmpty()) {
                if(p != null) {
                    stack.push(p);
                    p = p.left;
                } else {
                    p = stack.pop();
                    result.add(p.val);
                    p = p.right;
                }
            }
    
            return result;
        }
    
        public static void postOrderTravel(TreeNode root) {
    
            List<Integer> result = new ArrayList<>();
            if(root == null) {
                return result;
            }
    
            if(root != null) {
                Stack<TreeNode> stack1 = new Stack<>();
                Stack<TreeNode> stack2 = new Stack<>();
    
                stack1.push(root);
                while(!stack1.isEmpty()) {
                    TreeNode cur = stack1.pop();
                    stack2.push(cur);
    
                    if(cur.left != null) {
                        stack1.push(cur.left);
                    }
    
                    if(cur.right != null) {
                        stack1.push(cur.right);
                    }
                }
    
                while(!stack2.isEmpty()) {
                    //System.out.println(stack2.pop().val);
                    result.add(stack2.pop().val);
                }
            }
        }
    }
    

      

  • 相关阅读:
    在linux下如何判断是否已经安装某个软件?
    $ cd `dirname $0` 和PWD用法
    linux下添加,删除,修改,查看用户和用户组
    客户端远程连接linux下mysql数据库授权
    MySQL各个版本区别
    查看linux系统类型、版本、位数
    /bin/bash^M: bad interpreter: No such file or directory
    npm note
    karma note
    jasmine note
  • 原文地址:https://www.cnblogs.com/wylwyl/p/10658321.html
Copyright © 2020-2023  润新知