码迷,mamicode.com
首页 > 其他好文 > 详细

POJ2255-已知二叉树前序中序求后序

时间:2017-06-17 18:38:34      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:class   alt   style   max   void   第一个   gif   pen   span   

水题……也可以不建立二叉树来做

如果pre[pl:pr]对应in[il:ir],那么pre[pl]是这棵树的根,它在in的位置记为root,显然root在[il,ir]内

那么二叉树的左子树是in[il:root-1],也即pre[pl+1:pl+root-il]

二叉树的右子树是in[root+1,ir],也即pre[pl+root-il+1:pr]

按照左子树-右子树-树根的后序遍历方式输出即可

附代码

技术分享
#include <string>
#include <iostream>
#include <algorithm>
#define MAX 1000007
#define MAXN 1007
using namespace std;

int pre[MAXN],in[MAXN];

void getpost(int prel,int prer,int inl,int inr){
    //if(prel>prer||inl>inr) return;
    int root=inl;//root是先序的第一个节点在中序的位置 
    while(in[root]!=pre[prel]) root++;
    if(root!=inl) getpost(prel+1,prel+root-inl,inl,root-1);
    if(root!=inr) getpost(prel+root-inl+1,prer,root+1,inr);
    printf("%c",pre[prel]);
}

int main(){
    string a,b;
    while(cin>>a>>b){
        int len=a.length();
        for(int i=0;i<len;i++){
            pre[i]=a[i];
            in[i]=b[i];
        }
        getpost(0,len-1,0,len-1);
        printf("\n");
    }
    return 0;
}
/*
DBACEGF ABCDEFG
BCAD CBAD
*/
View Code

 

POJ2255-已知二叉树前序中序求后序

标签:class   alt   style   max   void   第一个   gif   pen   span   

原文地址:http://www.cnblogs.com/shuiming/p/7040739.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!