-
题目
java给定一个二叉树的根节点 root ,返回 它的 中序 遍历 。 -
示例
java示例 1 输入:root = [1,null,2,3] 输出:[1,3,2] 示例 2: 输入:root = [] 输出:[] 示例 3: 输入:root = [1] 输出:[1] -
解题思路
- 方法一:递归。
- 方法二:循环。
- 使用栈保存根节点。
- 每次从栈中取出当前根节点,并将其左右子节点,加入栈中。
-
代码(Java)
java// 方法一 class Solution { public List<Integer> inorderTraversal(TreeNode root) { List<Integer> res = new ArrayList<>(); midTrav(res, root); return res; } public Integer midTrav(List<Integer> res, TreeNode root) { if (root != null) { Integer left = midTrav(res, root.left); if (left != null) { res.add(left); } res.add(root.val); Integer right = midTrav(res, root.right); if (right != null) { res.add(right); } } return null; } }javaclass Solution { public List<Integer> inorderTraversal(TreeNode root) { List<Integer> res = new ArrayList<>(); if (root == null) { return res; } Stack<TreeNode> stack = new Stack<TreeNode>(); while (root != null || !stack.isEmpty()) { if (root != null) { stack.push(root); root = root.left; } else { root = stack.pop(); res.add(root.val); root = root.right; } } return res; } }
LeetCode94 二叉树的中遍历
biglxl2024-03-10 19:35
相关推荐
圣光SG5 小时前
Java操作题练习(七)Cx330_FCQ6 小时前
Tmux使用拳里剑气7 小时前
C++算法:多源BFSysa0510308 小时前
【板子】短序列dp(换成维护更小常数维度的dp)shwill1238 小时前
PID 算法(三)--- 增量 PID ↔ 单神经元 PID 等价映射wabs6669 小时前
关于图论【卡码网110.字符串迁移的思考】hanlin039 小时前
刷题笔记:力扣第242、349题(哈希表)浮沉98710 小时前
二分查找算法例题(二)only-qi11 小时前
大模型Agent面试攻略:落地工程痛点、评估体系与Agentic RAG核心精讲Gauss松鼠会13 小时前
【GaussDB】GaussDB锁阻塞源头查询