码迷,mamicode.com
首页 > 其他好文 > 详细

Invert Binary Tree

时间:2017-09-07 21:24:55      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:技术分享   src   方法   9.png   alt   转换   左右   tree   node   

    这是一道简单题

  题目:

    技术分享

  思路:

    本来最开始我想用BFS但是感觉那样有点复杂,后来就用了递归的方法,把他们转换为每个节点的左右节点都交换

  代码:

    

class Solution(object):
    def invertTree(self, root):
        """
        :type root: TreeNode
        :rtype: TreeNode
        """
        if not root: return None
               
        root.left = self.invertTree(root.left)
        root.right = self.invertTree(root.right)
        
        root.left, root.right = root.right, root.left
        return root

 

Invert Binary Tree

标签:技术分享   src   方法   9.png   alt   转换   左右   tree   node   

原文地址:http://www.cnblogs.com/liuxinzhi/p/7491682.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!