美文网首页数据结构和算法分析Leetcode
leecode刷题(29)-- 二叉树的中序遍历

leecode刷题(29)-- 二叉树的中序遍历

作者: 希希里之海 | 来源:发表于2019-05-06 15:38 被阅读0次

    leecode刷题(29)-- 二叉树的中序遍历

    二叉树的中序遍历

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

    示例:

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

    思路

    跟上一道题一样,用递归的思想很快就能解决。

    中序遍历:

    先处理左子树,然后是根,最后是右子树。

    代码如下

    Java 描述

    /**
     * Definition for a binary tree node.
     * public class TreeNode {
     *     int val;
     *     TreeNode left;
     *     TreeNode right;
     *     TreeNode(int x) { val = x; }
     * }
     */
    class Solution {
        List<Integer> list = new ArrayList();
        public List<Integer> inorderTraversal(TreeNode root) {
            if (root != null) {
                inorderTraversal(root.left);
                list.add(root.val);
                inorderTraversal(root.right);
            }
            return list;
        }
    }
    

    python 描述

    # Definition for a binary tree node.
    # class TreeNode:
    #     def __init__(self, x):
    #         self.val = x
    #         self.left = None
    #         self.right = None
    
    class Solution:
        def inorderTraversal(self, root: TreeNode) -> List[int]:
            res = []
            if root is not None:
                res = res + self.inorderTraversal(root.left)
                res = res + [root.val]
                res = res + self.inorderTraversal(root.right)
            return res
    

    总结

    对比如下:

    对比.png

    相关文章

      网友评论

        本文标题:leecode刷题(29)-- 二叉树的中序遍历

        本文链接:https://www.haomeiwen.com/subject/elfdoqtx.html