LourisXu
LourisXu
全部文章
分类
题解(66)
归档
标签
去牛客网
登录
/
注册
LourisXu的博客
全部文章
(共1篇)
题解 | #KMP#
class Solution { public: vector<int> getNext(string pattern){ int n = pattern.length(); vector<int> next(n, 0); ...
C++
KMP
2021-08-24
1
470