摘要: 先附上代码: class Solution { public: string longestPalindrome(string s) { int count = s.size(); int max = 0; string result; int j; int curlen; for (int i = 阅读全文
posted @ 2018-06-21 17:03 绍荣 阅读(161) 评论(0) 推荐(0) 编辑