(C++)验证回文字符串

简介: (C++)验证回文字符串

愿所有美好如期而遇


题目

这道题比较简单,做一个没有感情的使用函数机器。

int tolower(int a); 将大写字母转换为小写字母。

void reverse (BidirectionalIterator first, BidirectionalIterator last);字符串逆置函数

以及字符串大小比较重载。

class Solution {
public:
    bool isPalindrome(string s) 
    {
        string newstr;
        for(int i=0; i<s.size(); i++)
        {
            if((s[i] >= 'A' && s[i] <= 'Z') || (s[i] >= 'a' && s[i] <= 'z'))
            {
                newstr += tolower(s[i]);
            }
            if(s[i] >= '0' && s[i] <= '9')
            {
                newstr += s[i];
            }
        }
        s = newstr;
        reverse(newstr.begin(),newstr.end());
        return s == newstr;
    }
};


目录
相关文章
|
8月前
|
C++
验证回文串(C++)
验证回文串(C++)
32 0
|
7月前
字符串\判断回文
字符串\判断回文
34 2
|
7月前
|
canal 算法 数据可视化
LeetCode 125题:验证回文串
LeetCode 125题:验证回文串
|
8月前
|
canal Java
java字符串练习题7、验证回文串
java字符串练习题7、验证回文串
105 0
|
8月前
|
存储 算法 C++
括号序列:使用C++检查括号有效性
括号序列:使用C++检查括号有效性
165 0
|
8月前
leetcode-125:验证回文串
leetcode-125:验证回文串
59 0
|
8月前
|
算法
算法编程(六):验证回文串
算法编程(六):验证回文串
59 0
验证“哥德巴赫猜想”
验证“哥德巴赫猜想”
67 0
|
JavaScript 前端开发
🎖️typeScrpt中如何从验证字符串?
模板文字类型本质上是一种字符串类型。通过定义字符串必须匹配的模式,这些类型提供了一种验证和推断数据的方式。它们是大约三年前在 TypeScript 4.1 中引入的。根据最初的 GitHub PR,以下示例演示了 TypeScript 利用模板文字类型获得的多功能特性。
139 0
|
索引
验证回文串
验证回文串
72 0

热门文章

最新文章

下一篇
开通oss服务