二叉树中序遍历

Posted zzytxl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二叉树中序遍历相关的知识,希望对你有一定的参考价值。

94. 二叉树的中序遍历

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

示例:

输入: [1,null,2,3]
   1
         2
    /
   3

输出: [1,3,2]

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

public class T94 {
    public List<Integer> inorderTraversal(TreeNode root) {
        Stack<TreeNode> stack = new Stack<>();
        List<Integer> list = new ArrayList<>();
        TreeNode tempRoot = root;
        while (tempRoot != null || !stack.isEmpty()) {
            while (tempRoot != null) {
                stack.push(tempRoot);
                tempRoot = tempRoot.left;
            }
            //root左为空
            TreeNode node = stack.pop();
            list.add(node.val);
            tempRoot = node.right;
        }
        return list;
    }
}

 

以上是关于二叉树中序遍历的主要内容,如果未能解决你的问题,请参考以下文章

94-二叉树中序遍历

二叉树中序遍历的三种方法

二叉树中序遍历非递归写法

二叉树中序遍历

4685: 二叉树中序遍历

二叉树中序遍历(递归和非递归)算法C语言实现