美文网首页
2019-08-23 剑指 二叉树的镜像

2019-08-23 剑指 二叉树的镜像

作者: mztkenan | 来源:发表于2019-08-23 14:57 被阅读0次

    5min

    class Solution:
        # 返回镜像树的根节点
        def Mirror(self, root:TreeNode):
            if not root:return
            root.left,root.right=root.right,root.left
            self.Mirror(root.left)
            self.Mirror(root.right)
    

    相关文章

      网友评论

          本文标题:2019-08-23 剑指 二叉树的镜像

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