class Solution { public: /** * * @param s string字符串 * @return int整型 */ bool isPal(string &s,int start,int end) { while(start < end) { if(s[start] !=s[end]) { return false; } start...