摘要: #include #include #include using namespace std; char str[1005]; int f[1005][1005]; int main(){ scanf("%s",str); int len=strlen(str); for(int i=0;i<len;i++) f[i][i]=1; ... 阅读全文
posted @ 2018-03-25 12:32 Roni_i 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 注意是回文子串 1.暴力法 2.中心拓展法 3.动态规划法 4.manacher法 阅读全文
posted @ 2018-03-25 11:50 Roni_i 阅读(261) 评论(0) 推荐(0) 编辑