迴文串問題總結

迴文串的問題很經典,也很常見,涉及到遞歸,循環,動態規劃等方面,這裏總結一下幾種類型,供之後回顧,有問題請你們指正html 一、迴文串的判斷   leetcode上的題目 算法 bool isPalindrome(const char* src) { if(src == NULL)return true; int end = strlen(src)-1,begin = 0; while(be
相關文章
相關標籤/搜索