数据结构与算法-树(六):剑指offer-二叉树的镜像

二叉树的镜像

题目

操作给定的二叉树,将其变换为源二叉树的镜像。
在这里插入图片描述

解析

# -*- 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 not root:
            return None
        root.left, root.right = root.right, root.left
        
        self.Mirror(root.left)
        self.Mirror(root.right)
发布了49 篇原创文章 · 获赞 2 · 访问量 1821

猜你喜欢

转载自blog.csdn.net/liuluTL/article/details/105145391
今日推荐