4 重建二叉樹

2021-10-02 12:23:53 字數 1146 閱讀 3996

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

/**

* definition for binary tree

* struct treenode

* };

*/class

solution

node-

>left =

helper

( pre, pstart+

1, pstart+pos-vstart,

vin, vstart, pos-1)

; node-

>right =

helper

( pre, pstart+pos-vstart+

1, pend,

vin, pos+

1, vend)

;return node;

}

treenode*

reconstructbinarytree

(vector<

int> pre,vector<

int> vin)

};

/**

* definition for binary tree

* struct treenode

* };

*/class

solution

}// 左子樹序列

for(

int i =

0; i < rootindex; i++

)// 右子樹序列

for(

int i = rootindex +

1; i < length; i++

)

root-

>left =

reconstructbinarytree

(leftpre, leftin)

; root-

>right =

reconstructbinarytree

(rightpre, rightin)

;return root;}}

;

4 重建二叉樹

測試通過 時間限制 1秒 空間限制 32768k 題目描述 輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。時間限制 1秒空間限制 32768k 本題知識點 查詢 牛客網陣列題目鏈...

4 重建二叉樹

輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建該二叉樹。例如前序遍歷序列和中序遍歷序列為和,假設結果中無重複的數字。重建二叉樹並返回 1 前序遍歷二叉樹的形式為 根節點,左子樹,右子樹 中序遍歷二叉樹的形式為 左子樹,根節點,右子樹 因此我們需要把前序遍歷的第乙個結果new乙個treenode 出來...

4 重建二叉樹

輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。先序序列第乙個數就是根結點而後是左子樹的先序序列和右子樹的先序序列,而中序序列是先是左子樹的中序序列,然後是根結點,最後是右子樹的中...