摘要: public static string LongestPalindrome(string s) { string T = preProcess(s); int n = T.Length; int[] P = new int[n]; //C是中心位置下标,R是长度 ... 阅读全文
posted @ 2016-11-06 23:15 pzhang22 阅读(165) 评论(0) 推荐(0) 编辑