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++; end--; } return true; } int minCut(string s) { // write code here //===========状态定义及初始化================== vect...