二叉树的镜像(python)

题目描述

操作给定的二叉树,将其变换为源二叉树的镜像。 二叉树的镜像(python)

 

 

 

 

 1 class Solution:
 2     # 返回镜像树的根节点
 3     def Mirror(self, root):
 4         # write code here
 5         if root==None:
 6             return None
 7         #处理根节点
 8         root.left,root.right=root.right,root.left
 9         #处理左子树
10         self.Mirror(root.left)
11         #处理右子树
12         self.Mirror(root.right)

2019-12-09 18:51:46

 

上一篇:仓库搬迁,保留提交记录的方法


下一篇:58.对称的二叉树(python)