Invert Binary Tree
Posted 唐僧洗发爱飘柔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Invert Binary Tree相关的知识,希望对你有一定的参考价值。
这是一道简单题
题目:
思路:
本来最开始我想用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的主要内容,如果未能解决你的问题,请参考以下文章
[leetcode]226.Invert Binary Tree