给定一棵二叉树的前序遍历和中序遍历,求其后序遍历

简介: 给定一棵二叉树的前序遍历和中序遍历,求其后序遍历
#include <string.h>
struct Node{
    Node *lChild;
    Node *rChild;
    char c;
}Tree[50];      //静态内存分配数组
int loc;        //静态数组中已经分配的结点个数
Node *creat()
{
    Tree[loc].lChild = Tree[loc].rChild = NULL;
    return &Tree[loc++];
}
char str1[30],str2[30];
void postOrder(Node *T)
{
    if(T->lChild != NULL)
    {
        postOrder(T->lChild);
    }
    if(T->rChild != NULL)
    {
        postOrder(T->rChild);
    }
    printf("%c",T->c);
}
Node *build(int s1,int e1,int s2,int e2)
{
    Node *ret = creat();
    ret->c = str1[s1];
    int rootIdx;
    for(int i = s2;i <= e2;i++)
    {
        if(str2[i] == str1[s1])
        {
            rootIdx = i;
            break;
        }
    }
    if(rootIdx != s2)
    {
        ret->lChild = build(s1 + 1,s1 + (rootIdx - s2),s2,rootIdx - 1);
    }
    if(rootIdx != e2)
    {
        ret->rChild = build(s1 + (rootIdx - s2) + 1,e1,rootIdx + 1,e2);
    }
    return ret;
}
int main()
{
    while(scanf("%s",str1) != EOF)
    {
        scanf("%s",str2);
        loc = 0;
        int L1 = strlen(str1);
        int L2 = strlen(str2);
        Node *T = build(0,L1 - 1,0,L2 - 1);
        postOrder(T);
        printf("\n");
    }
    return 0;
}

目录
相关文章
排序二叉树的创建及先序、中序、后序输出二叉树
排序二叉树的创建及先序、中序、后序输出二叉树
56 1
|
6月前
【力扣刷题】二叉树的中序遍历、二叉树的最大深度、翻转二叉树、对称二叉树
【力扣刷题】二叉树的中序遍历、二叉树的最大深度、翻转二叉树、对称二叉树
39 0
|
6月前
|
存储 算法 前端开发
589. N 叉树的前序遍历
589. N 叉树的前序遍历
33 0
|
6月前
|
算法 Java 程序员
【算法训练-二叉树 一】【遍历二叉树】前序遍历、中序遍历、后续遍历、层序遍历、锯齿形层序遍历、二叉树右视图
【算法训练-二叉树 一】【遍历二叉树】前序遍历、中序遍历、后续遍历、层序遍历、锯齿形层序遍历、二叉树右视图
69 0
|
存储 算法 C++
【二叉树】利用前序和中序遍历结果生成二叉树并输出其后序和层序遍历结果
【二叉树】利用前序和中序遍历结果生成二叉树并输出其后序和层序遍历结果
125 0
|
存储
刷题之完全二叉树的权值和小字辈及根据后序和中序遍历输出先序遍历
刷题之完全二叉树的权值和小字辈及根据后序和中序遍历输出先序遍历
143 0
二叉树的锯齿形层序遍历
二叉树的锯齿形层序遍历
|
程序员
【Leetcode】101. 对称二叉树、104. 二叉树的最大深度、226. 翻转二叉树
【Leetcode】101. 对称二叉树、104. 二叉树的最大深度、226. 翻转二叉树
64 0
【Leetcode】101. 对称二叉树、104. 二叉树的最大深度、226. 翻转二叉树
|
算法 前端开发 程序员
二叉树的后序遍历序列
二叉树的后序遍历序列
二叉树的后序遍历序列