這篇文章主要介紹了python中遍歷樹的方法有哪些,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
創(chuàng)新互聯建站專注為客戶提供全方位的互聯網綜合服務,包含不限于成都網站制作、做網站、普洱網絡推廣、成都微信小程序、普洱網絡營銷、普洱企業(yè)策劃、普洱品牌公關、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務,您的肯定,是我們最大的嘉獎;創(chuàng)新互聯建站為所有大學生創(chuàng)業(yè)者提供普洱建站搭建服務,24小時服務熱線:028-86922220,官方網址:www.cdcxhl.com
各種遍歷順序如下圖所示:
樹的最大深度
# class TreeNode(object): # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution(object): def maxdepth(self, root): if root is None: return 0 return max(self.maxdepth(root.left), self.maxdepth(root.right))+1
深度優(yōu)先
深度優(yōu)先遍歷有三種方式:前序遍歷、中序遍歷和后序遍歷
所說的前序、中序、后序,是指根節(jié)點的先后順序。
前序遍歷:根節(jié)點 -> 左子樹 -> 右子樹
# class TreeNode(object): # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution(object): def preorder(self, root): if root is None: return '' print root.val if root.lef: self.preorder(root.left) if root.right: self.preorder(root.right)
中序遍歷:左子樹 -> 根節(jié)點 -> 右子樹
# class TreeNode(object): # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution(object): def midorder(self, root): if root is None: return '' if root.lef: self.midorder(root.left) print root.val if root.right: self.midorder(root.right)
后序遍歷:左子樹 -> 右子樹 -> 根節(jié)點
# class TreeNode(object): # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution(object): def endorder(self, root): if root is None: return '' if root.lef: self.endorder(root.left) if root.right: self.endorder(root.right) print root.val
廣度優(yōu)先
廣度優(yōu)先遍歷,即層次遍歷,優(yōu)先遍歷兄弟節(jié)點
層次遍歷:根節(jié)點 -> 左節(jié)點 -> 右節(jié)點
# class TreeNode(object): # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution(object): def graorder(self, root): if root is None: return '' queue = [root] while queue: res = [] for item in queue: print item.val, if item.left: res.append(item.left) if item.right: res.apppend(item.right) queue = res
比較兩棵樹是否相同
# class TreeNode(object): # def __init__(self, x): # self.val = x # self.left = None # self.right = None class Solution(object): def issame(self, root1, root2): if root1 is None and root2 is None: return True elif root1 and root2: return root1.val==root2.val and issame(root1.left, root2.left) and issame(root1.right, root2.right) else: return False
感謝你能夠認真閱讀完這篇文章,希望小編分享python中遍歷樹的方法有哪些內容對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯,關注創(chuàng)新互聯行業(yè)資訊頻道,遇到問題就找創(chuàng)新互聯,詳細的解決方法等著你來學習!