Xlint101
Xlint101
全部文章
未归档
acceleration(18)
ACM模板(26)
java(3)
kotlin(2)
stars(1)
日记(1)
真·随笔(10)
配置(1)
题解(1)
归档
标签
去牛客网
登录
/
注册
Xlint101的博客
全部文章
/ 未归档
(共2篇)
Manacher
string Manacher(string s) { // Insert '#' string t = "$#"; for (int i = 0; i < s.size(); ++i) { t += s[i]; t ...
字符串
2020-04-20
0
225
最小表示法
字符串最小表示法 int getPos(string s,int op)//zero represent the least representation, while one represent the largest { int i=0,j=1; int len=s.size...
字符串
2021-01-19
0
214