本文首發(fā)于我的個人博客Suixin’s Blog
原文: https://suixinblog.cn/2019/03/target-offer-binary-tree-mirror.html 作者: Suixin
題目描述
操作給定的二叉樹煮落,將其變換為源二叉樹的鏡像。
輸入描述:
代碼
Python(2.7.3)
# -*- coding:utf-8 -*-
# class TreeNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
class Solution:
# 返回鏡像樹的根節(jié)點
def Mirror(self, root):
# write code here
if root is not None:
# Python可以直接在一行交換兩個變量的值踊谋,不必引入新變量
root.left, root.right = root.right, root.left
self.Mirror(root.left)
self.Mirror(root.right)
return root
運行時間:31ms
占用內(nèi)存:5848k
參考
https://www.nowcoder.com/profile/6927081/codeBookDetail?submissionId=12712193