0
到目前爲止,我有如何通過二叉搜索樹遍歷在Python(沒有遞歸)
def tree_iterate():
parent, current = None, self.root
lst = []
while current is not None:
if current.left not None:
lst.append(current.item)
parent, current = current, current.left
if current.right not None:
lst.append(current.item)
parent, current = current, current.right
(抱歉間距我非常新的這個)
我不太清楚當電流左右移動時,如何在樹的兩邊迭代,而不使用遞歸。我的主要目標是獲得此BST中所有節點的列表enter code here
你爲什麼想避免遞歸?這是做樹遍歷的最簡潔清晰的方法。獲得樹中所有節點的簡單迭代方法是使用寬度優先搜索(BFS)。你可以使用一個隊列(一個簡單的python列表)。 – spinlok