摘要: 大意:给定n(n#include #include #include const int maxn = 100010;using namespace std;struct node{ char e[60], s[60];}dic[maxn];char t[60];in... 阅读全文
posted @ 2016-05-10 22:24 Nickqiao 阅读(320) 评论(0) 推荐(0)
摘要: 大意:给定两个字符串a,b,判断a是否是b的子序列。分析:逐位对比即可。代码:#include#include#include#includeusing namespace std;char a[100005],b[100005];int main(){ //... 阅读全文
posted @ 2016-05-10 00:07 Nickqiao 阅读(375) 评论(0) 推荐(0)