劍指offer 樹的子結構

2021-10-06 18:39:45 字數 2766 閱讀 2398

輸入兩棵二叉樹a,b,判斷b是不是a的子結構。(ps:我們約定空樹不是任意乙個樹的子結構)

# -

*- coding:utf-8-

*-# class treenode:

# def __init__(self, x):

# self.val = x

# self.left = none

# self.right = none

class solution:

def hassubtree

(self, proot1, proot2)

:# write code here

def same

(proot1,proot2)

:if not proot2:

return true

if not proot1:

return false

if proot1.val != proot2.val:

return false

return

same

(proot1.left,proot2.left) and same

(proot1.right,proot2.right)

if not proot1 or not proot2:

return false

if proot1 and proot2:

return

same

(proot1,proot2) or same

(proot1.left,proot2) or same

(proot1.right,proot2)

**和思路解析

要判斷b是不是a的子樹

# -

*- coding:utf-8-

*-# class treenode:

# def __init__(self, x):

# self.val = x

# self.left = none

# self.right = none

class solution:

def hassubtree

(self, proot1, proot2)

: result = false

if proot1 and proot2:

if proot1.val == proot2.val:

result = self.

same

(proot1,proot2)

if not result:

result = self.

hassubtree

(proot1.left,proot2)

if not result:

result = self.

hassubtree

(proot1.right,proot2)

return result

def same

(self,proot1,proot2)

:if not proot2: #這裡作為遞迴結束的條件

return true

if not proot1:

return false

if proot1.val != proot2.val:

return false

return self.

same

(proot1.left,proot2.left) and self.

same

(proot1.right,proot2.right)

有了思路 再簡化**

# -

*- coding:utf-8-

*-# class treenode:

# def __init__(self, x):

# self.val = x

# self.left = none

# self.right = none

class solution:

def hassubtree

(self, proot1, proot2)

: #兩個節點有乙個為空就返回false

if not proot1 or not proot2:

return false

#否則兩個節點都存在

return self.

same

(proot1,proot2) or self.

hassubtree

(proot1.left,proot2) or self.

hassubtree

(proot1.right,proot2)

def same

(self,proot1,proot2)

:if not proot2: #這裡作為遞迴結束的條件

return true

if not proot1:

return false

if proot1.val != proot2.val:

return false

return self.

same

(proot1.left,proot2.left) and self.

same

(proot1.right,proot2.right)

劍指offer 樹的子結構

華電北風吹 天津大學認知計算與應用重點實驗室 日期 2015 9 30 題目描述 輸入兩顆二叉樹a,b,判斷b是不是a的子結構。解析 解決樹類問題的時候遞迴是乙個很好的解決方案,並且寫的程式簡單,理解起來也很容易。遞迴的時候謝了乙個函式來判斷當前兩個根節點對應的子樹是否相等 issubtree 不想...

劍指offer 樹的子結構

題目描述 輸入兩顆二叉樹a,b,判斷b是不是a的子結構。這實際上二叉樹遍歷演算法的一種應用,要在原二叉樹中查詢是否具有某課子樹,只需要判斷每個節點是否都在二叉樹中是否出現即可。所以需要先判斷頭結點,只有頭結點符合要求才繼續比較其子樹是否符合,一樣依次從頭結點開始比較直到其左右子樹進行比較,如果都符合...

劍指offer 樹的子結構

大體思路如下 在程式遞迴過程中,記得注意遞迴的出口以及空指標的處理 主程式中在root1 root2非空的條件下才能去判斷 判斷judge函式中,一些邊界出口為 if root2 null return true if root1 null return false public class sol...