摘要: 1 const int MAXN = 100005 ; 2 const int N = 26 ; 3 4 struct Palindromic_Tree{ 5 int next[MAXN][N] ;//next指针,next指针和字典树类似,指向的串为当前串两端加上同一个字符构成 6 int fai 阅读全文
posted @ 2017-07-06 22:39 Super_Nick 阅读(172) 评论(0) 推荐(0) 编辑