7 重建二叉樹

2021-10-02 21:38:39 字數 487 閱讀 5040

輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。

前序遍歷的確定根節點,可以根據此點分別找到左子樹跟右子樹的前序遍歷序列和中序遍歷序列,通過遞迴再分別構建子樹的左子樹和右子樹。**如下:

public treenode reconstructbinarytree

(int

pre,

int[

] in)

public treenode reconstructbinarytree

(int

pre,

int prestart,

int preend,

int[

] in,

int instart,

int inend)

}return root;

}

7 重建二叉樹

輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。class treenode def init self,x self.val x self.right none self.lef...

7 重建二叉樹

輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。複習知識點 二叉樹的遍歷 前中後序指的是根節點的順序,左總在右的前面 前序遍歷的順序是 根節點,左子節點 左子樹 右子節點 右子樹 ...

劍指 7 重建二叉樹

題目描述 演算法分析 提交 class solution treenode reconstructbinarytreecore vector iterator start pre,vector iterator end pre,vector iterator start vin,vector ite...