比赛 noip2016普及练习1 评测结果 AAAAA
题目名称 求先序遍历 最终得分 100
用户昵称 サイタマ 运行时间 0.001 s
代码语言 C++ 内存使用 0.32 MiB
提交时间 2016-11-03 21:26:50
显示代码纯文本
#include<fstream>  
#include<cstring>  
using namespace std;  
ifstream cin("nlr.in");  
ofstream cout("nlr.out");  
string s1,s2;  
int pre(string a,string b)  
{  
	int p=a.find(b[b.length()-1]);  
	cout<<a[p];  
	if(p>0)pre(a.substr(0,p),b.substr(0,p));  
	if(p<a.length()-1)pre(a.substr(p+1,a.length()-p-1),b.substr(p,b.length()-p-1));  
	return 0;  
}  
int main()  
{  
	cin>>s1;  
	cin>>s2;  
	pre(s1,s2);  
	cin.close();  
	cout.close();  
	return 0;  
}