(Python 2.7)我需要打印具有给定预序和中序的二叉树的 bfs,以及预序和中序字符串的最大长度。我知道它是如何工作的,例如:preorder:ABCDE inorder:CBDAE max length:5
A
/ \
B E
/ \
C D
BFS:ABECD
到目前为止,我已经弄清楚了
class BinaryTree:
def __init__ (self, value, parent=None):
self.parent = parent
self.left_child = None
self.right_child = None
self.value=value
def setLeftChild(self, child=None):
self.left_child = child
if child:
child.parent = self
def setRightChild(self, child=None):
self.right_child = child
if child:
child.parent = self
preorder={}
inorder={}
print "max string length?"
i=int(raw_input())
count=0
while i>count:
print"insert the preorder"
preorder[raw_input()]=count
count=count+1
print "preorder is",sorted(preorder, key=preorder.get)
count2=0
while i>count2:
print"insert the inorder"
inorder[raw_input()]=count2
count2=count2+1
print "inorder is",sorted(inorder, key=inorder.get)
root=
我已经想出了如何在 python 中创建二叉树,但问题是我不知道如何添加下一个孩子的值。如您所见,我已经有了根并想出了如何插入第一个孩子(左和右),但我不知道如何添加下一个。