最長迴文Manacher

預處理: 判斷一個串是不是迴文串,往往要分開編寫,造成代碼的拖沓 int LongestPalindrome(const char * s, int n){ int i, j, max; if (s == 0 || n < 1) return 0; max = 0; for (i = 0; i < n; ++i){//i is the middle point of palindrome for
相關文章
相關標籤/搜索