对称的二叉树 python leetcode101

系统 1435 0

题目 :给定一个二叉树,检查它是否是镜像对称的。

例如,二叉树 [1,2,2,3,4,4,3] 是对称的。

            
                  1
   / \
  2   2
 / \ / \
3  4 4  3

            
          

但是下面这个 [1,2,2,null,3,null,3] 则不是镜像对称的:

            
                  1
   / \
  2   2
   \   \
   3    3

            
          

用递归和队列实现

            
              
                #递归
              
              
                # Definition for a binary tree node.
              
              
                # class TreeNode:
              
              
                #     def __init__(self, x):
              
              
                #         self.val = x
              
              
                #         self.left = None
              
              
                #         self.right = None
              
              
                class
              
              
                Solution
              
              
                :
              
              
                def
              
              
                isSymmetric
              
              
                (
              
              self
              
                ,
              
               root
              
                :
              
               TreeNode
              
                )
              
              
                -
              
              
                >
              
              
                bool
              
              
                :
              
              
                if
              
              
                not
              
               root
              
                :
              
              
                # 先判断根节点是否为空
              
              
                return
              
              
                True
              
              
                return
              
               self
              
                .
              
              isMirror
              
                (
              
              root
              
                .
              
              left
              
                ,
              
               root
              
                .
              
              right
              
                )
              
              
                # 分成左子树和右子树判断
              
              
                def
              
              
                isMirror
              
              
                (
              
              self
              
                ,
              
               p
              
                ,
              
               q
              
                )
              
              
                :
              
              
                # 判断两棵树是否是镜像树
              
              
                if
              
              
                not
              
               p 
              
                and
              
              
                not
              
               q
              
                :
              
              
                # 根节点都为空,是
              
              
                return
              
              
                True
              
              
                if
              
              
                not
              
               p 
              
                or
              
              
                not
              
               q
              
                :
              
              
                # 其中有一棵为空,不是
              
              
                return
              
              
                False
              
              
        l 
              
                =
              
               self
              
                .
              
              isMirror
              
                (
              
              p
              
                .
              
              left
              
                ,
              
               q
              
                .
              
              right
              
                )
              
              
                # p的左子树和q的右子树是否相同
              
              
        r 
              
                =
              
               self
              
                .
              
              isMirror
              
                (
              
              p
              
                .
              
              right
              
                ,
              
               q
              
                .
              
              left
              
                )
              
              
                # p的右子树和q的左子树是否相同
              
              
                return
              
               p
              
                .
              
              val 
              
                ==
              
               q
              
                .
              
              val 
              
                and
              
               l 
              
                and
              
               r            
              
                # 值相等,并且p的左=q的右,p的右=q的左
              
              
                # 方法二 队列实现
              
              
                class
              
              
                Solution
              
              
                :
              
              
                def
              
              
                isSymmetric
              
              
                (
              
              self
              
                ,
              
               root
              
                )
              
              
                :
              
              
                """
        队列
        :param root:
        :return:
        """
              
              
                if
              
              
                not
              
               root
              
                :
              
              
                return
              
              
                True
              
              

        node_queue 
              
                =
              
              
                [
              
              root
              
                .
              
              left
              
                ,
              
               root
              
                .
              
              right
              
                ]
              
              
                # 在空队列中加入左子树和右子树
              
              
                while
              
               node_queue
              
                :
              
              
            left 
              
                =
              
               node_queue
              
                .
              
              pop
              
                (
              
              
                0
              
              
                )
              
              
                # 依次弹出两个元素
              
              
            right 
              
                =
              
               node_queue
              
                .
              
              pop
              
                (
              
              
                0
              
              
                )
              
              
                if
              
              
                not
              
               right 
              
                and
              
              
                not
              
               left
              
                :
              
              
                # 如果均为空,继续下一个循环
              
              
                continue
              
              
                if
              
              
                not
              
               right 
              
                or
              
              
                not
              
               left
              
                :
              
              
                # 如果只有一个为空,返回False
              
              
                return
              
              
                False
              
              
                if
              
               left
              
                .
              
              val 
              
                !=
              
               right
              
                .
              
              val
              
                :
              
              
                # 都非空,再判断值是否相等
              
              
                return
              
              
                False
              
              

            node_queue
              
                .
              
              append
              
                (
              
              left
              
                .
              
              left
              
                )
              
              
                # 将两个左右子树的左右子树逆序加入队列
              
              
            node_queue
              
                .
              
              append
              
                (
              
              right
              
                .
              
              right
              
                )
              
              
            node_queue
              
                .
              
              append
              
                (
              
              left
              
                .
              
              right
              
                )
              
              
            node_queue
              
                .
              
              append
              
                (
              
              right
              
                .
              
              left
              
                )
              
              
                #node_queue.extend([left.left, right.right, left.right, right.left])   或者用这一句话写
              
              
                return
              
              
                True
              
            
          

更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论