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)
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
网友评论