比赛 noip2016普及练习1 评测结果 AAAAA
题目名称 求先序遍历 最终得分 100
用户昵称 Ge0Bi1Lao0W 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2016-11-03 19:35:44
显示代码纯文本
#include<iostream>  
#include<cstdio>  
#include<string>  
using namespace std;  
string x,y;  
void sep(string x,string y)  
{  
    string r=y.substr(y.length()-1,1);  
    int i=x.find(r);  
    cout<<r;  
    if(i>0)  
        sep(x.substr(0,i),y.substr(0,i));  
    if(i<x.length()-1)  
        sep(x.substr(i+1,x.length()-i-1),y.substr(i,y.length()-1-i));  
}  
int wjh()  
{  
    freopen("nlr.in","r",stdin);      
    freopen("nlr.out","w",stdout);  
    cin>>x>>y;  
    sep(x,y);  
      
return 0;  
}
int W=wjh();
int main()
{
	;
}