摘要: class Solution { public: int longestPalindromeSubseq(string s) { int n=s.size(); int dp[n][n]; memset(dp,0,sizeof(dp)); for(int i=0; i<n;i++)dp[i][i] 阅读全文
posted @ 2020-10-17 22:14 阿破 阅读(74) 评论(0) 推荐(0) 编辑