摘要: 马拉车算法用于寻找字符串中的最长回文子串。## java ```javaclass ManacherAlgo { String longestPalindrome(String s) { // 填充 String newS = fillStr(s); // center是中心,right是中心的最远覆盖范围,max_center是最长回文字串的中心 int right = 0, cente... 阅读全文
posted @ 2019-09-20 11:52 小王点点 阅读(273) 评论(0) 推荐(0) 编辑