美文网首页
python实现leetcode之94. 二叉树的中序遍历

python实现leetcode之94. 二叉树的中序遍历

作者: 深圳都这么冷 | 来源:发表于2021-09-20 00:04 被阅读0次

    解题思路

    递归处理
    先左子树
    再根
    然后右子树

    94. 二叉树的中序遍历

    代码

    # Definition for a binary tree node.
    # class TreeNode(object):
    #     def __init__(self, x):
    #         self.val = x
    #         self.left = None
    #         self.right = None
    
    class Solution(object):
        def inorderTraversal(self, root):
            """
            :type root: TreeNode
            :rtype: List[int]
            """
            array = []
            h(root, array)
            return array
    
    
    def h(root, array):
        if root:
            h(root.left, array)
            array.append(root.val)
            h(root.right, array)
    
    效果图

    相关文章

      网友评论

          本文标题:python实现leetcode之94. 二叉树的中序遍历

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