题目描述

原题链接

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

示例 1:
image.png
输入:root = [1,null,2,3]
输出:[1,3,2]

示例 2:
输入:root = []
输出:[]

示例 3:
输入:root = [1]
输出:[1]

示例 4:
image.png
输入:root = [1,2]
输出:[2,1]

示例 5:
image.png
输入:root = [1,null,2]
输出:[1,2]

提示:

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

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

个人解法

Javascript

递归

  1. /*
  2. * @lc app=leetcode.cn id=94 lang=javascript
  3. *
  4. * [94] 二叉树的中序遍历
  5. */
  6. // @lc code=start
  7. /**
  8. * Definition for a binary tree node.
  9. * function TreeNode(val, left, right) {
  10. * this.val = (val===undefined ? 0 : val)
  11. * this.left = (left===undefined ? null : left)
  12. * this.right = (right===undefined ? null : right)
  13. * }
  14. */
  15. /**
  16. * @param {TreeNode} root
  17. * @return {number[]}
  18. */
  19. var inorderTraversal = function (root) {
  20. const result = [];
  21. var mid = function (root) {
  22. if (root == null) {
  23. return;
  24. }
  25. mid(root.left);
  26. result.push(root.val);
  27. mid(root.right);
  28. }
  29. mid(root);
  30. return result;
  31. };
  32. // @lc code=end

Java

  1. /**
  2. * Definition for a binary tree node.
  3. * public class TreeNode {
  4. * int val;
  5. * TreeNode left;
  6. * TreeNode right;
  7. * TreeNode() {}
  8. * TreeNode(int val) { this.val = val; }
  9. * TreeNode(int val, TreeNode left, TreeNode right) {
  10. * this.val = val;
  11. * this.left = left;
  12. * this.right = right;
  13. * }
  14. * }
  15. */
  16. class Solution {
  17. List<Integer> tree=new ArrayList<>();
  18. public List<Integer> inorderTraversal(TreeNode root) {
  19. inorderTraversal(root,1);
  20. return tree;
  21. }
  22. public void inorderTraversal(TreeNode root,int n) {
  23. if (root==null){
  24. return ;
  25. }
  26. inorderTraversal(root.left,0);
  27. tree.add(root.val);
  28. inorderTraversal(root.right,0);
  29. }
  30. }

其他解法

Java

迭代

  1. class Solution {
  2. public List<Integer> inorderTraversal(TreeNode root) {
  3. List<Integer> res = new ArrayList<Integer>();
  4. Deque<TreeNode> stk = new LinkedList<TreeNode>();
  5. while (root != null || !stk.isEmpty()) {
  6. //一直找到最左边的节点
  7. while (root != null) {
  8. stk.push(root);
  9. root = root.left;
  10. }
  11. root = stk.pop();
  12. res.add(root.val);
  13. //如果为左子树叶子节点,右子树为空(每次被找过的节点都可以视为不存在)
  14. //根节点还在栈中存着
  15. root = root.right;
  16. }
  17. return res;
  18. }
  19. }

Morris 中序遍历

image.png

  1. class Solution {
  2. public List<Integer> inorderTraversal(TreeNode root) {
  3. List<Integer> res = new ArrayList<Integer>();
  4. TreeNode predecessor = null;
  5. while (root != null) {
  6. if (root.left != null) {
  7. // predecessor 节点就是当前 root 节点向左走一步,然后一直向右走至无法走为止
  8. predecessor = root.left;
  9. while (predecessor.right != null && predecessor.right != root) {
  10. predecessor = predecessor.right;
  11. }
  12. // 让 predecessor 的右指针指向 root,继续遍历左子树
  13. if (predecessor.right == null) {
  14. predecessor.right = root;
  15. root = root.left;
  16. }
  17. // 说明左子树已经访问完了,我们需要断开链接
  18. else {
  19. res.add(root.val);
  20. predecessor.right = null;
  21. root = root.right;
  22. }
  23. }
  24. // 如果没有左孩子,则直接访问右孩子
  25. else {
  26. res.add(root.val);
  27. root = root.right;
  28. }
  29. }
  30. return res;
  31. }
  32. }

Javascript

迭代

  1. /*
  2. * @lc app=leetcode.cn id=94 lang=javascript
  3. *
  4. * [94] 二叉树的中序遍历
  5. */
  6. // @lc code=start
  7. /**
  8. * Definition for a binary tree node.
  9. * function TreeNode(val, left, right) {
  10. * this.val = (val===undefined ? 0 : val)
  11. * this.left = (left===undefined ? null : left)
  12. * this.right = (right===undefined ? null : right)
  13. * }
  14. */
  15. /**
  16. * @param {TreeNode} root
  17. * @return {number[]}
  18. */
  19. var inorderTraversal = function (root) {
  20. const res = [];
  21. const stk = [];
  22. while (root || stk.length) {
  23. while (root) {
  24. stk.push(root);
  25. root = root.left;
  26. }
  27. root = stk.pop();
  28. res.push(root.val);
  29. root = root.right;
  30. }
  31. return res;
  32. };
  33. // @lc code=end