摘要: class Solution { int f[5005]; public: string longestPalindrome(string s) { string t="!#"; for(auto c:s){ t+=c; t+='#'; } t+='$'; int rMax=0,iMax=0,res 阅读全文
posted @ 2020-10-27 13:45 阿破 阅读(57) 评论(0) 推荐(0) 编辑