栈---二叉树的中序遍历

  1. 题目
    给定一个二叉树,返回它的中序 遍历。
  2. 示例
输入: [1,null,2,3]
   1
    \
     2
    /
   3

输出: [1,3,2]
  1. 代码实现
    a.对于任意节点,将当前节点及其不为null的左孩子全部入栈;
    b.若当前栈顶元素无左孩子,弹出栈顶元素,访问该栈顶元素,然后将栈顶元素的右孩子置为当前节点;
    c.继续执行a,b操作,直到当前节点为null并且栈为空则结束。
/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public List<Integer> inorderTraversal(TreeNode root) {
        List<Integer> list = new ArrayList<>();
        Stack<TreeNode> stack = new Stack<>();
        while (root!=null||!stack.empty()){
            while (root!=null){
                stack.push(root);
                root = root.left;
            }
            if(!stack.empty()){
                TreeNode top = stack.pop();
                list.add(top.val);
                root = top.right;
            }
        }
        return list;
    }
}
点赞