7:バイナリツリーを再構築する

バイナリツリーのプレオーダートラバーサルとミッドオーダートラバーサルの結果を入力して、バイナリツリーを再構築してください。入力のプレオーダートラバーサルとミッドオーダートラバーサルの結果に重複した数値が含まれていないとします。たとえば、前順のトラバーサルシーケンス{1,2,4,7,3,5,6,8}と中順のトラバーサルシーケンス{4,7,2,1,5,3,8,6}を入力し、バイナリツリーを再構築します。戻る。

class TreeNode:
    def __init__(self,x):
        self.val = x
        self.right = None
        self.left = None

class solution:
    def ReConstructBinaryTree(self,pre,tin):
        lenth = len(pre)
        if lenth == 0:
            return None
        elif lenth== 1:
            return TreeNode(pre)
        else:
            root = TreeNode(pre[0])
            root.left = self.ReConstructBinaryTree(pre[1:tin.index(pre[0])+ 1],tin[:tin.index(pre[0])])
            root.right = self.ReConstructBinaryTree(pre[tin.index(pre[0])+ 1:],tin[tin.index(pre[0])+ 1:])
        return root

再帰的思考を使用する

元の記事を16件公開 Likes0 訪問数158

おすすめ

転載: blog.csdn.net/qq_43275748/article/details/102657072