数据结构期末复习——还原二叉树(根据中序和后序遍历输出先序遍历)

Posted keepz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据结构期末复习——还原二叉树(根据中序和后序遍历输出先序遍历)相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<cstdio>
#include<queue>
#include<string>
#include<algorithm>
#include<vector>
#include<cstring>
#include<sstream>
#include<cmath>
using namespace std;
const int maxn = 100000;
//char pre[maxn];     /**先序遍历后对应的串*/
char ino[maxn];     /**中序遍历后对应的串*/
char post[maxn];    /**后序遍历后对应的串*/
typedef struct BiNode
{
    char data;
    BiNode *Left;
    BiNode *Right;
}BiNode, *BiTree;

BiTree build(char *ino, char *post, int len)
{
    if(len <= 0)
        return NULL;
    BiTree T = new BiNode;
    char *root = post + len - 1;
    char *p = ino;
    T->data = *root;
    while(p)
    {
        //找到根节点在中序中对应的位置
        if(*p == *root)
            break;
        ++p;
    }

    //左子树的长度
    int left_len = p - ino;
    T->Left = build(ino, post, left_len);
    T->Right = build(p + 1, post + left_len , len - left_len - 1);
    return T;
}

//先序遍历
void preOrder(BiTree T)
{
    if(T)
    {
        printf(" %c", T->data);
        preOrder(T->Left);
        preOrder(T->Right);
    }
}

int main()
{
    /**N指二叉树节点的个数*/
    int N;
    scanf("%d %s %s", &N, ino, post);
    BiTree T = build(ino, post, N);
    printf("preorder:");
    preOrder(T);
    printf("
");
}

参考博客:https://blog.csdn.net/qq_37708702/article/details/79644936

以上是关于数据结构期末复习——还原二叉树(根据中序和后序遍历输出先序遍历)的主要内容,如果未能解决你的问题,请参考以下文章

怎么根据二叉树的前序,中序,确定它的后序

小白学算法8.二叉树的遍历,前序中序和后序

构造一棵二叉树,并分别输出其先序遍历、中序遍历和后序遍历的结果

PTA 二叉树的三种遍历(先序中序和后序)

中序和后序遍历构造二叉树

输出二叉树的先序中序和后序遍历序列