459. 重复的子字符串
摘要:
KMP算法一点都不想回忆了,等找实习的时候再仔细看吧 class Solution { public: bool repeatedSubstringPattern(string s) { if(s.size() <= 1) return false; string temp = "", str = 阅读全文
posted @ 2024-10-21 23:33 神奇的萝卜丝 阅读(2) 评论(0) 推荐(0) 编辑