程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> [leetcode]Symmetric Tree @ Python

[leetcode]Symmetric Tree @ Python

編輯:C++入門知識

[leetcode]Symmetric Tree @ Python


題意:判斷二叉樹是否為對稱的。   Given a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).   For example, this binary tree is symmetric:       1    / \   2   2  / \ / \ 3  4 4  3     But the following is not:       1    / \   2   2    \   \    3    3 解題思路:這題也不難。需要用一個help函數,當然也是遞歸的。當存在左右子樹時,判斷左右子樹的根節點值是否相等,如果想等繼續遞歸判斷左子樹根的右子樹根節點和右子樹根的左子樹根節點以及左子樹根的左子樹根節點和右子樹根的右子樹根節點的值是否相等。然後一直遞歸判斷下去就可以了。       復制代碼 # Definition for a  binary tree node # class TreeNode: #     def __init__(self, x): #         self.val = x #         self.left = None #         self.right = None   class Solution:     # @param root, a tree node     # @return a boolean     def isSymmetric(self, root):         if root:             return self.help(root.left, root.right)         return True              def help(self, p,q):         if p is None and q is None: return True         if p and q and p.val == q.val:             return self.help(p.left, q.right) and self.help(p.right, q.left)         return False

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved