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

oj---九度oj---1078

时间:2017-09-19 18:31:58      阅读:428      评论:0      收藏:0      [点我收藏+]

标签:color   null   col   style   c++   ==   i++   main   class   

 

 

#include<cstdio>
#include<cstring>
struct Node{
    Node* lchild;
    Node* rchild;
    char data;
}node[50];

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

char str1[30],str2[30];
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=str1[s1];
    int i;
    for(i=s2;i<=e2;i++){
        if(str2[i]==str1[s1]){
            break;
        }
    }
    if(i!=s2)
        ret->lchild=build(s1+1,s1+1+(i-1-s2) ,s2,i-1);
    else ret->lchild=NULL;
    if(i!=e2)
        ret->rchild=build(s1+1+(i-1-s2)+1,e1,i+1,e2);
    else ret->rchild=NULL; //NULL可以不写 因为初始为NULL了
    return ret;
}

int main(){
    while(gets(str1)){
        loc=0;
        gets(str2);
        int L1=strlen(str1);
        int L2=strlen(str2);
        Node* root=build(0,L1-1,0,L2-1);
        postorder(root);
        printf("\n");
    }
    return 0;
}

 

oj---九度oj---1078

标签:color   null   col   style   c++   ==   i++   main   class   

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

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