leetcode125 验证回文串

leetcode125 验证回文串_第1张图片

 解法一:

class Solution {
public:
    bool isPalindrome(string s) {
        //可以考虑字符串的+=算法
        //重新创建一个字符串
        string goods;
        for(int i=0;i

你可能感兴趣的:(leetcode,leetcode)