LeetCode 力扣 125. 验证回文串 isPalindrome
程序员文章站
2022-07-13 08:41:24
...
大家觉得写还可以,可以点赞、收藏、关注一下吧!
也可以到我的个人博客参观一下,估计近几年都会一直更新!和我做个朋友吧!https://motongxue.cn
125. 验证回文串
题目描述
给定一个字符串,验证它是否是回文串,只考虑字母和数字字符,可以忽略字母的大小写。
说明
本题中,我们将空字符串定义为有效的回文串。
示例 1:
输入: "A man, a plan, a canal: Panama"
输出: true
示例 2:
输入: "race a car"
输出: false
分析
定义一个新的char[]
数组,如果为字符串中为字母和数字就加到char[]
数组,所以char数组是一个只有字母和数字的数组,然后按常规方法来求回文串就行了。
需要注意的是,字母是不区分大写小写的!
class Solution {
public boolean isPalindrome(String s) {
int n = s.length();
char[] c = new char[n]; // 定义char数组
int index = 0;
for(int i=0;i<n;i++){
char tmp = s.charAt(i);
if('A'<=tmp&&tmp<='Z')
tmp = (char)(tmp-'A'+'a'); // 不区分大小写
if(('a'<=tmp&&tmp<='z')||'0'<=tmp&&tmp<='9')
c[index++] = tmp; // 记录到c数组中
}
int i=0,j=index-1;
while(i<j){
if(c[i]!=c[j])return false; // 常规判断回文串的方法
i++;
j--;
}
return true;
}
}
提交结果
2020年9月25日更
大家觉得写还可以,可以点赞、收藏、关注一下吧!
也可以到我的个人博客参观一下,估计近几年都会一直更新!和我做个朋友吧!https://motongxue.cn
上一篇: ES6中的类(Class)
下一篇: 页面内滚屏处理