//題目:輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。// 假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。
// 例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。
//解題思路:
// 1)根據前序遍歷序列確定根節點:
// 在前序遍歷序列中,第乙個數字總是根的節點值。
// 2)根據中序遍歷序列確定左、右子樹的節點:
// 在中序遍歷序列中,根節點的值在序列的中間,左子樹的節點的值位於根節點的值的左邊,
// 而右子樹的節點的值位於根節點的值的右邊。
////
//public class p62_reconstructbinarytree
return reconstructtree(pre, in, 0, pre.length - 1, 0, in.length - 1);
}public treenode reconstructtree(int pre, int in, int pstart, int pstop, int istart, int istop)
/*** if (pstart == pstop) else}*/
//在中序序列尋找根節點
int iroot = istart;
while (in[iroot] != rootvalue && iroot<=istop)
if (in[iroot] != rootvalue)
//在中序序列中尋找到根節點,移動的長度
int ilength = iroot - istart;
//重建左子樹
if (iroot > istart)
//重建右子樹
if (iroot < istop)
return root;
}public static void main(string args) ;
int in = ;
p62_reconstructbinarytree test = new p62_reconstructbinarytree();
treenode binarytree = test.reconstructbinarytree(pre, in);
}}
劍指offer 重建二叉樹
重建二叉樹2.cpp 定義控制台應用程式的入口點。題目描述 輸入乙個二叉樹的前序遍歷和中序遍歷,輸出這顆二叉樹 思路 前序遍歷的第乙個節點一定是這個二叉樹的根節點,這個節點將二叉樹分為左右子樹兩個部分,然後進行遞迴求解 include stdafx.h include vector using na...
《劍指offer》重建二叉樹
輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如,則重建二叉樹並返回。輸入乙個樹的前序和中序,例如輸入前序遍歷序列和中序遍歷序列 根據輸入的前序和中序,重建乙個該二叉樹,並返回該樹的根節點。definition for binary...
劍指offer 重建二叉樹
題目描述 輸入某二叉樹的前序遍歷和中序遍歷的結果,請重建出該二叉樹。假設輸入的前序遍歷和中序遍歷的結果中都不含重複的數字。例如輸入前序遍歷序列和中序遍歷序列,則重建二叉樹並返回。definition for binary tree struct treenode class solution if ...