微笑早晨

文章
6
资源
1
加入时间
2年10月17天

2021 ECNU Campus Invitational Contest

I.I LOVE YOU题意:给定两串字符串,A串、B串,问是否可以通过删除一些字符使A串变成B串。思路:遍历一遍是否可能符合。1. #include<bits/stdc++.h>2. using namespace std;3. char a[100],b[100];4. int x,y,i,j,t;5. int main()6. {7. gets(a);8. gets(b);9. x=strlen(a);10. y=strlen(b);11. ..