zoukankan      html  css  js  c++  java
  • Medium | LeetCode 94. 二叉树的中序遍历

    94. 二叉树的中序遍历

    难度中等826

    给定一个二叉树的根节点 root ,返回它的 中序 遍历。

    示例 1:

    img
    输入:root = [1,null,2,3]
    输出:[1,3,2]
    

    示例 2:

    输入:root = []
    输出:[]
    

    示例 3:

    输入:root = [1]
    输出:[1]
    

    示例 4:

    img
    输入:root = [1,2]
    输出:[2,1]
    

    示例 5:

    img
    输入:root = [1,null,2]
    输出:[1,2]
    

    提示:

    • 树中节点数目在范围 [0, 100]
    • -100 <= Node.val <= 100

    进阶: 递归算法很简单,你可以通过迭代算法完成吗?

    方法一: 递归算法

    class Solution {
    
        private List<Integer> res = new ArrayList<>();
    
        public List<Integer> inorderTraversal(TreeNode root) {
            InOrder(root);
            return res;
        }
    
        public void InOrder(TreeNode root) {
            if (root == null) {
                return;
            }
            InOrder(root.left);
            res.add(root.val);
            InOrder(root.right);
        }
    }
    

    方法二: 非递归算法

    class Solution {
    
        private final List<Integer> res = new ArrayList<>();
    
        public List<Integer> inorderTraversal(TreeNode root) {
            InOrderNonRecursive(root);
            return res;
        }
    
        public void InOrderNonRecursive(TreeNode root) {
            Deque<TreeNode> stack = new LinkedList<>();
            TreeNode currentNode = root;
            while (currentNode != null || !stack.isEmpty()) {
                // 先一路向左, 左孩子全部压栈
                while (currentNode != null) {
                    stack.push(currentNode);
                    currentNode = currentNode.left;
                }
                // 出栈, 访问栈顶元素
                currentNode = stack.pop();
                res.add(currentNode.val);
                // 如果当前访问元素的右孩子不为空, 则将右孩子压栈
                currentNode = currentNode.right;
            }
        }
    }
    
  • 相关阅读:
    Codeforces Round #380(div 2)
    Codeforces Round #378(div 2)
    Codeforces Round #379(div 2)
    CCPC2016合肥现场赛
    CCPC2016沈阳站
    HDU2222 Keywords Search__AC自动机
    poj2185Milking Grid
    POJ2961_kmp
    POJ 2406
    poj 2752Seek the Name, Seek the Fame
  • 原文地址:https://www.cnblogs.com/chenrj97/p/14290655.html
Copyright © 2011-2022 走看看