leetcode-验证回文字符串

Posted asasooo998

tags:

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


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


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


示例 1:

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

示例 2:

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




class
Solution { public boolean isPalindrome(String s) { s = s.toLowerCase(); char[] c = s.toCharArray(); int num = 0; int las = c.length - 1; if (c.length == 0) return true; if (c.length == 1) return true; while (num <= las) { if (!((c[num] >= ‘a‘ && c[num] <= ‘z‘) || (c[num] >= ‘0‘ && c[num] <= ‘9‘))) { num++; } else if (!((c[las] >= ‘a‘ && c[las] <= ‘z‘) || (c[las] >= ‘0‘ && c[las] <= ‘9‘))) { las--; } else { if (c[num] == c[las]) { // DO num++; las--; } else { return false; } } } return true; } }

 





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

LeetCode第125题—验证回文串—Python实现

LeetCode-125-验证回文串

LeetCode:验证回文串125

LeetCode 680. 验证回文字符串 Ⅱ

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

LeetCode(125):验证回文串