摘要: 题目 KMP典中典,可惜我不会。 卡哥思路里的讲解也似懂非懂,跟着卡哥代码敲了一遍 class Solution { public: void getNext(int *next, const string &s) { int j = -1; next[0] = j; for (int i = 1; 阅读全文
posted @ 2025-01-16 20:23 hisun9 阅读(30) 评论(0) 推荐(0)