摘要: 代码 1 //最小回文子串,忽略标点和空格 2 #include<stdio.h> 3 #include<string.h> 4 #include<ctype.h> 5 #define MAXN 5000+10 6 7 char buf[MAXN],s[MAXN]; 8 int p[MAXN]; 9 阅读全文
posted @ 2020-04-03 23:50 kakusan 阅读(225) 评论(0) 推荐(0) 编辑