LeetCode 第125题 验证回文串

Posted 朝才

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 第125题 验证回文串相关的知识,希望对你有一定的参考价值。

(一)题目描述

给定一个字符串,验证它是否是回文串,只考虑字母和数字字符,可以忽略字母的大小写。

说明:本题中,我们将空字符串定义为有效的回文串。

示例 1:

输入: "A man, a plan, a canal: Panama"
输出: true

示例 2:

输入: "race a car"
输出: false

 

(二)算法思路

  1 先将字符串转换成字符数组 用到的函数 toCharArray()

  2 从两端开始判断每一个字符是否为字母或数字,虽然题目说的只考虑字母和数字,但是它将空格视为有效回文串 用到的函数isLetterOrDigit()

  

(三)LeetCode AC代码

class Solution {
    public boolean isPalindrome(String s) {
         char[] cha = s.toCharArray();
         int i=0; 
         int j=cha.length - 1;
        while(i<j){
            if(!Character.isLetterOrDigit(cha[i])){
                i++;
            }else if(!Character.isLetterOrDigit(cha[j])){
                j--;
            }else if(Character.toLowerCase(cha[i]) == Character.toLowerCase(cha[j])){
                i++;j--;
            }else{
                return false;
            }
        }
        return true;
    }
}

 

 

 


 

  

 

      android 夜神





以上是关于LeetCode 第125题 验证回文串的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode做题笔记第125题:验证回文串

Leetcode125. 验证回文串(JAVA双指针)

LeetCode 125. 验证回文串 && 680. 验证回文字符串 Ⅱ

leetcode-----125. 验证回文串

前端与算法 leetcode 125. 验证回文串

LeetCode-125-验证回文串