记录编号 356808 评测结果 AAAAA
题目名称 [NOIP 2001]求先序遍历 最终得分 100
用户昵称 GravatarLGLJ 是否通过 通过
代码语言 C++ 运行时间 0.001 s
提交时间 2016-12-06 18:44:22 内存使用 0.31 MiB
显示代码纯文本
#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;
int qq(string x,string y)
{
	string r=y.substr(y.length()-1,1);
	cout<<r;
	int z=x.find(r);
	if(z>0)
		qq(x.substr(0,z),y.substr(0,z));
	if(z<x.length()-1)
		qq(x.substr(z+1,x.length()-1-z),y.substr(z,y.length()-1-z));
}
int main()
{
	freopen ("nlr.in","r",stdin);
	freopen ("nlr.out","w",stdout);
	string a,b;
	cin>>a>>b;
	qq(a,b);
	return 0;
}