中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-09-29 15:24:29 來源:腳本之家 閱讀:198 作者:Tao-Tao-Tao 欄目:開發技術

本文實例講述了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')

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

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

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

執行下述語句

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

輸出

root: a ; leftChild: None ; rightChild: None

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

然后執行下述語句

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插入了一個左節點,查看輸出的第一句話,可以看到左節點其實也是一個BinaryTree,這是因為插入時,遞歸生成的。

第二句輸出,可以查看左節點的值

最后執行

r.insertLeft('c')

輸出:

The leftChild is not None.You can not insert

可以看到,我們無法再向左節點插入了,因為該節點已經有值了

更多關于Python相關內容感興趣的讀者可查看本站專題:《Python數據結構與算法教程》、《Python加密解密算法與技巧總結》、《Python編碼操作技巧總結》、《Python函數使用技巧總結》、《Python字符串操作技巧匯總》及《Python入門與進階經典教程》

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

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武宣县| 延边| 桐梓县| 博兴县| 班玛县| 新巴尔虎右旗| 洛川县| 永兴县| 贵港市| 汕头市| 剑河县| 周口市| 九台市| 延安市| 晋江市| 武定县| 长岛县| 乌恰县| 宜都市| 安塞县| 鄂托克前旗| 大姚县| 二连浩特市| 大田县| 平邑县| 阳春市| 美姑县| 中卫市| 行唐县| 天镇县| 塔河县| 林州市| 锦屏县| 万州区| 神农架林区| 林芝县| 社旗县| 尚志市| 车险| 江华| 南丹县|