溫馨提示×

溫馨提示×

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

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

刷題系列 - Python中怎么通過非遞歸實(shí)現(xiàn)二叉樹前序遍歷

發(fā)布時間:2021-08-07 16:04:43 來源:億速云 閱讀:133 作者:Leah 欄目:編程語言

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)刷題系列 - Python中怎么通過非遞歸實(shí)現(xiàn)二叉樹前序遍歷,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

二叉樹前序遍歷(Binary Tree Preorder Traversal), 前序遍歷首先訪問根結(jié)點(diǎn)然后遍歷左子樹,最后遍歷右子樹。

如下圖所示,前序遍歷結(jié)果:ABDECF

刷題系列 - Python中怎么通過非遞歸實(shí)現(xiàn)二叉樹前序遍歷

考慮了下,要創(chuàng)建兩個隊列,一個放遍歷結(jié)果,一個做類似棧作用,把路過節(jié)點(diǎn)放入;如果當(dāng)前節(jié)點(diǎn)左邊節(jié)點(diǎn)存在,讀取值并放入棧繼續(xù)去下個左節(jié)點(diǎn), 如果沒有左邊節(jié)點(diǎn)則去右節(jié)點(diǎn),同樣操作;如果都沒有,則棧彈出最后一個節(jié)點(diǎn),刪除關(guān)聯(lián),并把棧中上一個節(jié)點(diǎn)作為當(dāng)前節(jié)點(diǎn),相當(dāng)于返回走。

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, x):
#         self.val = x
#         self.left = None
#         self.right = None
class Solution:
    def preorderTraversal(self, root: TreeNode) -> List[int]:
        traversalList = []
        nodeList = []
        # add the first one to node list, and travel from left node first, then right; if a node without left   #and righ sub-node, pop it from node list, then remove the link with parent node; traverlous finish as root list #is empty.
        if root != None:
            traversalList.append(root.val)
            nodeList.append(root)
            currentNode = root
            while nodeList != []:
                if currentNode.left != None:
                    currentNode = currentNode.left
                    traversalList.append(currentNode.val)
                    nodeList.append(currentNode)
                elif currentNode.right != None:
                    currentNode = currentNode.right
                    traversalList.append(currentNode.val)
                    nodeList.append(currentNode)
                else:
                    nodeList.pop()
                    if nodeList != []:
                        if nodeList[-1].right == currentNode:
                            nodeList[-1].right = None
                        elif nodeList[-1].left == currentNode:
                            nodeList[-1].left = None
                        currentNode = nodeList[-1]
        return traversalList

上述就是小編為大家分享的刷題系列 - Python中怎么通過非遞歸實(shí)現(xiàn)二叉樹前序遍歷了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI