国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

Python簡單定義與使用二叉樹示例

2020-01-04 15:06:44
字體:
來源:轉載
供稿:網(wǎng)友

本文實例講述了Python簡單定義與使用二叉樹的方法。分享給大家供大家參考,具體如下:

class BinaryTree:  def __init__(self,rootObj):    self.root = rootObj    self.leftChild = None    self.rightChild = None  def insertLeft(self,newNode):    if self.leftChild == None:      self.leftChild = BinaryTree(newNode)    else:      print('The leftChild is not None.You can not insert')  def insertRight(self,newNode):    if self.rightChild == None:      self.rightChild = BinaryTree(newNode)    else:      print('The rightChild is not None.You can not insert')

構建了一個簡單的二叉樹類,它的初始化函數(shù),將傳入的rootObj賦值給self.root,作為根節(jié)點,leftChild和rightChild都默認為None。

函數(shù)insertLeft為向二叉樹的左子樹賦值,若leftChild為空,則先構造一個BinaryTree(newNode),即實例化一個新的二叉樹,然后將這棵二叉樹賦值給原來的二叉樹的leftChild。此處遞歸調用了BinaryTree這個類。

若不為空 則輸出:The rightChild is not None.You can not insert

執(zhí)行下述語句

r = BinaryTree('a')print('root:',r.root,';','leftChild:',r.leftChild,';','rightChild:',r.rightChild)

輸出

root: a ; leftChild: None ; rightChild: None

即我們構造了一顆二叉樹,根節(jié)點為a,左右子樹均為None

然后執(zhí)行下述語句

r.insertLeft('b')print('root:',r.root,';','leftChild:',r.leftChild,';','rightChild:',r.rightChild)print('root:',r.root,';','leftChild.root:',r.leftChild.root,';','rightChild:',r.rightChild)

輸出

root: a ; leftChild: <__main__.BinaryTree object at 0x000002431E4A0DA0> ; rightChild: None
root: a ; leftChild.root: b ; rightChild: None

我們向r插入了一個左節(jié)點,查看輸出的第一句話,可以看到左節(jié)點其實也是一個BinaryTree,這是因為插入時,遞歸生成的。

第二句輸出,可以查看左節(jié)點的值

最后執(zhí)行

r.insertLeft('c')

輸出:

The leftChild is not None.You can not insert

可以看到,我們無法再向左節(jié)點插入了,因為該節(jié)點已經(jīng)有值了

 

希望本文所述對大家Python程序設計有所幫助。


注:相關教程知識閱讀請移步到python教程頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 讷河市| 邳州市| 神农架林区| 阳谷县| 吉隆县| 灵寿县| 米林县| 宣武区| 嘉定区| 饶平县| 波密县| 东明县| 福建省| 秭归县| 沭阳县| 梁山县| 婺源县| 高平市| 临高县| 托克托县| 景泰县| 兰溪市| 清镇市| 柳河县| 什邡市| 和静县| 朝阳县| 义马市| 永平县| 紫云| 府谷县| 白银市| 正阳县| 蚌埠市| 耿马| 涟水县| 汾阳市| 常州市| 房山区| 广东省| 山东省|