接近双百;用中心扩展算法 动态规划推出状态转移链 leecode第5题 #include<iostream> using namespace std; #include<string> pair<int, int> expandAroundCenter(const string& s, int left, int right) { while (left >= 0 &&...