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

oj---九度oj--1078---二叉树重建

时间:2017-06-21 21:10:00      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:iostream   break   string   i++   ++   ring   name   print   roo   

 

通过两种遍历结果重建,必须有中序遍历(找到根的位置)。

#include<cstdio>
#include<cstring>
#include<string>
#include<iostream>
using namespace std;
struct Node{
    Node* lchild;
    Node* rchild;
    char  data;
}node[50];
string a,b;

int cnt;

Node* create(){
    node[cnt].lchild=node[cnt].rchild=NULL;
    return &node[cnt++];
}

void postorder(Node* root){
    if(root->lchild!=NULL) postorder(root->lchild);
    if(root->rchild!=NULL) postorder(root->rchild);
    printf("%c",root->data);
}
Node* build(int s1,int e1,int s2,int e2){
    Node* ret=create();
    ret->data=a[s1];
    int idx=0;
    for(int i=0;i<b.size();i++){
        if(b[i]==a[s1]){
            idx=i;
            break;    
        }     
    }
    if(idx!=s2)
        ret->lchild=build(s1+1,s1+idx-s2,s2,idx-1);
    if(idx!=e2)
        ret->rchild=build(s1+idx-s2+1,e1,idx+1,e2);
    return ret;
}
int main(){
    
    while(cin>>a){
        cin>>b;
        cnt=0;
        Node* root=build(0,a.size()-1,0,b.size()-1);
        postorder(root);
        printf("\n");
    }    
    return 0;
}

 

oj---九度oj--1078---二叉树重建

标签:iostream   break   string   i++   ++   ring   name   print   roo   

原文地址:http://www.cnblogs.com/kprac/p/7061383.html

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