标签:tco array href 二叉树 treenode roo ISE 递归算法 arraylist
给定一个二叉树,返回它的中序 遍历。
示例:
输入: [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; } }
标签:tco array href 二叉树 treenode roo ISE 递归算法 arraylist
原文地址:https://www.cnblogs.com/zzytxl/p/12535723.html