劍指offer面試題7:重建二叉樹

輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。java preorder爲前序遍歷的數組 inorder爲中序遍歷的數組web class Solution { public TreeNode buildTree(int[] preorder, int[] inorder) { int length=preor
相關文章
相關標籤/搜索