老卫带你学---剑指offer刷题系列(18.二叉树的镜像)

18.二叉树的镜像

问题:

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

在这里插入图片描述

解决:

思想:

这道题我们需要观察,镜像二叉树其实就是一个节点的左右子节点互换,那我们写一个递归就可以实现让整体的二叉树镜像起来。

python代码:

# -*- coding:utf-8 -*-
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None
class Solution:
    # 返回镜像树的根节点
    def Mirror(self, root):
        # write code here
        if(root!=None):
            root.left,root.right=root.right,root.left
            self.Mirror(root.left)
            self.Mirror(root.right)
发布了160 篇原创文章 · 获赞 30 · 访问量 7万+

猜你喜欢

转载自blog.csdn.net/yixieling4397/article/details/104911746