dp[i][j]的意义:在子串 s[i...j] 中,最长的回文子串长度。 #include <bits/stdc++.h> using namespace std; int longestPalindromeSubseq(const string& str) { int length = str.size(); vector<vector<int> > dp(length, vector<int>(length, 0)); // 初始对角值设为 1 for (int i = 0; i < le...