已知二叉樹前序序列和中序序列,求二叉樹(c++代碼)遞歸

/** * 根據前序遍歷序列和中序遍歷序列還原二叉樹 * A[]表示前序遍歷序列 B[]表示中序遍歷序列 * A[l1, h1] B[l2, h2] * 初始時l1 = h1 = 1,l2 = h2 = 結點個數 */ Bitree PreInCreate(int *A, int *B, int l1, int h1, int l2, int h2) { BiNode *root = new B
相關文章
相關標籤/搜索