LeetCode 226. 翻转二叉树

作者: freesan44 | 来源:发表于2020-03-11 21:59 被阅读0次

    题目

    翻转一棵二叉树。

    示例:
    
    输入:
    
         4
       /   \
      2     7
     / \   / \
    1   3 6   9
    输出:
    
         4
       /   \
      7     2
     / \   / \
    9   6 3   1
    

    备注:
    这个问题是受到 Max Howell 的 原问题 启发的 :

    谷歌:我们90%的工程师使用您编写的软件(Homebrew),但是您却无法在面试时在白板上写出翻转二叉树这道题,这太糟糕了。

    解题思路

    广度优先搜索,深度优先搜索

    # Definition for a binary tree node.
    class TreeNode:
        def __init__(self, x):
            self.val = x
            self.left = None
            self.right = None
    
    class Solution:
        def invertTree(self, root: TreeNode) -> TreeNode:
            ##深度优先
            # if root:
            #     temp = root.left
            #     root.left = root.right
            #     root.right = temp
            #     root.left = self.invertTree(root.left)
            #     root.right = self.invertTree(root.right)
            #     return root;
            # else:
            #     return None
            ##广度优先,用堆栈来处理
            if root:
                stack = [root]
                while stack:
                    node = stack.pop()
                    node.left, node.right = node.right, node.left
                    if node.left:
                        stack.append(node.left)
                    if node.right:
                        stack.append(node.right)
            else:
                return None
    

    Github:https://github.com/freesan44/LeetCode

    相关文章

      网友评论

        本文标题:LeetCode 226. 翻转二叉树

        本文链接:https://www.haomeiwen.com/subject/karkjhtx.html