侧边栏壁纸
博主头像
Hope博主等级

努力赚钱的工科研究生

  • 累计撰写 362 篇文章
  • 累计创建 129 个标签
  • 累计收到 5 条评论
标签搜索

LeetCode 125. 验证回文串

Hope
2022-02-26 / 0 评论 / 0 点赞 / 254 阅读 / 368 字
温馨提示:
本文最后更新于 2022-02-26,若内容或图片失效,请留言反馈。部分素材来自网络,若不小心影响到您的利益,请联系我们删除。

LeetCode 125. 验证回文串

思路:
可以归结为双指针,但是这道题我直接反转了,实际上双指针可以节省空间。
代码:

class Solution {
public:
    bool isPalindrome(string s) {
        string res;
        for(auto i:s){
            if(i != ' ' && i >= 'a' && i <= 'z' || i >= 'A' && i <= 'Z' || i >= '0' && i <= '9') res+=i;
        }
        
        for(auto &i:res){
            if(i >= 'A' && i <= 'Z'){
                i+=32;
            }
        }
        
        
        string temp=res;
        
        reverse(res.begin(),res.end());
        
        return temp == res;
    }
};
0

评论区