美文网首页
二叉树的镜像

二叉树的镜像

作者: 而立之年的技术控 | 来源:发表于2019-12-27 15:39 被阅读0次
    微信图片_20191227153825.jpg
    class Solution:
        # 返回镜像树的根节点
        def Mirror(self, root):
            # write code here
            if not root:
                return None
            root.left, root.right = root.right, root.left
            self.Mirror(root.left)
            self.Mirror(root.right)
            return root
    

    相关文章

      网友评论

          本文标题:二叉树的镜像

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