这种题一般有二种形式,共同点是都已知中序序列。如果没有中序序列,是无法唯一确定一棵树的。
<1>已知二叉树的前序序列和中序序列,求解树。
1、确定树的根节点。树根是当前树中所有元素在前序遍历中最先出现的元素。
2、求解树的子树。找出根节点在中序遍历中的位置,根左边的所有元素就是左子树,根右边的所有元素就是右子树。若根节点左边或右边为空,则该方向子树为空;若根节点
边和右边都为空,则根节点已经为叶子节点。
3、递归求解树。将左子树和右子树分别看成一棵二叉树,重复1、2、3步,直到所有的节点完成定位。
<2>、已知二叉树的后序序列和中序序列,求解树。
1、确定树的根。树根是当前树中所有元素在后序遍历中最后出现的元素。
2、求解树的子树。找出根节点在中序遍历中的位置,根左边的所有元素就是左子树,根右边的所有元素就是右子树。若根节点左边或右边为空,则该方向子树为空;若根节点
边和右边都为空,则根节点已经为叶子节点。
3、递归求解树。将左子树和右子树分别看成一棵二叉树,重复1、2、3步,直到所有的节点完成定位。
测试用例:
<1>先序 中序 求 后序
输入:
先序序列:ABCDEGF
中序序列:CBEGDFA
输出后序:CGEFDBA
代码:
-
-
-
-
-
-
-
-
void PreInCreateTree(BiTree &T,int PreIndex,int InIndex,int subTreeLen){
-
-
if(subTreeLen <= 0){
-
T = NULL;
-
return;
-
}
-
else{
-
T = (BiTree)malloc(sizeof(BiTNode));
-
-
T->data = PreArray[PreIndex];
-
-
int index = strchr(InArray,PreArray[PreIndex]) - InArray;
-
-
int LenF = index - InIndex;
-
-
PreInCreateTree(T->lchild,PreIndex + 1,InIndex,LenF);
-
-
int LenR = subTreeLen - 1 - LenF;
-
-
PreInCreateTree(T->rchild,PreIndex + LenF + 1,index + 1,LenR);
-
}
-
}
主函数调用:
-
BiTree T;
-
PreInCreateTree(T,0,0,strlen(InArray));
-
PostOrder(T);
另一种算法:
-
-
-
-
-
-
-
-
-
void PreInCreateTree(BiTree &T,int PreS ,int PreE ,int InS ,int InE){
-
int RootIndex;
-
-
T = (BiTree)malloc(sizeof(BiTNode));
-
T->data = PreArray[PreS];
-
-
for(int i = InS;i <= InE;i++){
-
if(T->data == InArray[i]){
-
RootIndex = i;
-
break;
-
}
-
}
-
-
if(RootIndex != InS){
-
-
PreInCreateTree(T->lchild,PreS+1,(RootIndex-InS)+PreS,InS,RootIndex-1);
-
}
-
else{
-
T->lchild = NULL;
-
}
-
-
if(RootIndex != InE){
-
-
PreInCreateTree(T->rchild,PreS+1+(RootIndex-InS),PreE,RootIndex+1,InE);
-
}
-
else{
-
T->rchild = NULL;
-
}
-
}
主函数调用:
-
PreInCreateTree(T,0,strlen(PreArray)-1,0,strlen(InArray)-1);
具体讲解请看:点击打开链接
<2>中序 后序 求先序
输入:
中序序列:CBEGDFA
后序序列:CGEFDBA
输出先序:ABCDEGF
代码:
-
-
-
-
-
-
-
-
void PostInCreateTree(BiTree &T,int PostIndex,int InIndex,int subTreeLen){
-
-
if(subTreeLen <= 0){
-
T = NULL;
-
return;
-
}
-
else{
-
T = (BiTree)malloc(sizeof(BiTNode));
-
-
T->data = PostArray[PostIndex];
-
-
int index = strchr(InArray,PostArray[PostIndex]) - InArray;
-
-
int LenF = index - InIndex;
-
-
PostInCreateTree(T->lchild,PostIndex - (subTreeLen - 1 - LenF) - 1,InIndex,LenF);
-
-
int LenR = subTreeLen - 1 - LenF;
-
-
PostInCreateTree(T->rchild,PostIndex-1,index + 1,LenR);
-
}
-
}
主函数调用:
-
BiTree T2;
-
PostInCreateTree(T2,strlen(PostArray) - 1,0,strlen(InArray));
-
PreOrder(T2);
完整代码:
-
#include<iostream>
-
#include<string>
-
using namespace std;
-
-
-
typedef struct BiTNode{
-
-
char data;
-
-
struct BiTNode *lchild,*rchild;
-
}BiTNode,*BiTree;
-
-
-
char PreArray[101] = "ABCDEGF";
-
-
char InArray[101] = "CBEGDFA";
-
-
char PostArray[101] = "CGEFDBA";
-
-
-
-
-
-
-
-
void PreInCreateTree(BiTree &T,int PreIndex,int InIndex,int subTreeLen){
-
-
if(subTreeLen <= 0){
-
T = NULL;
-
return;
-
}
-
else{
-
T = (BiTree)malloc(sizeof(BiTNode));
-
-
T->data = PreArray[PreIndex];
-
-
int index = strchr(InArray,PreArray[PreIndex]) - InArray;
-
-
int LenF = index - InIndex;
-
-
PreInCreateTree(T->lchild,PreIndex + 1,InIndex,LenF);
-
-
int LenR = subTreeLen - 1 - LenF;
-
-
PreInCreateTree(T->rchild,PreIndex + LenF + 1,index + 1,LenR);
-
}
-
}
-
-
-
-
-
-
-
-
void PostInCreateTree(BiTree &T,int PostIndex,int InIndex,int subTreeLen){
-
-
if(subTreeLen <= 0){
-
T = NULL;
-
return;
-
}
-
else{
-
T = (BiTree)malloc(sizeof(BiTNode));
-
-
T->data = PostArray[PostIndex];
-
-
int index = strchr(InArray,PostArray[PostIndex]) - InArray;
-
-
int LenF = index - InIndex;
-
-
PostInCreateTree(T->lchild,PostIndex - (subTreeLen - 1 - LenF) - 1,InIndex,LenF);
-
-
int LenR = subTreeLen - 1 - LenF;
-
-
PostInCreateTree(T->rchild,PostIndex-1,index + 1,LenR);
-
}
-
}
-
-
void PreOrder(BiTree T){
-
if(T != NULL){
-
-
printf("%c ",T->data);
-
-
PreOrder(T->lchild);
-
-
PreOrder(T->rchild);
-
}
-
}
-
-
void PostOrder(BiTree T){
-
if(T != NULL){
-
-
PostOrder(T->lchild);
-
-
PostOrder(T->rchild);
-
-
printf("%c ",T->data);
-
}
-
}
-
int main()
-
{
-
BiTree T;
-
PreInCreateTree(T,0,0,strlen(InArray));
-
PostOrder(T);
-
printf("\n");
-
BiTree T2;
-
PostInCreateTree(T2,strlen(PostArray) - 1,0,strlen(InArray));
-
PreOrder(T2);
-
return 0;
-
}
经典白话算法之二叉树中序前序序列(或后序)求解树,布布扣,bubuko.com
经典白话算法之二叉树中序前序序列(或后序)求解树
原文:http://blog.csdn.net/sunnyyoona/article/details/24903815