leetcode 125. Valid Palindrome ----- java

Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases.

For example,
"A man, a plan, a canal: Panama" is a palindrome.
"race a car" is not a palindrome.

Note:
Have you consider that the string might be empty? This is a good question to ask during an interview.

For the purpose of this problem, we define empty string as valid palindrome.

判读一个字符串是否是回文字符串(只判断期中的字符和数字)。

1、两个栈,从前向后和从后向前,然后判断两个栈是否相同。

public class Solution {
    public boolean isPalindrome(String s) {
        Stack stack1 = new Stack<Character>();
        Stack stack2 = new Stack<Character>();
        s = s.toLowerCase();
        char[] word = s.toCharArray();
        int len = s.length();
        for( int i = 0;i<len;i++){
            if( (word[i] >= ‘0‘ && word[i] <= ‘9‘) || (word[i]>=‘a‘ && word[i]<=‘z‘)  )
                stack1.push(word[i]);
            if( (word[len-1-i] >= ‘0‘ && word[len-1-i] <= ‘9‘) || (word[len-1-i]>=‘a‘ && word[len-1-i]<=‘z‘)  )
                stack2.push(word[len-1-i]);
        }

        return stack1.equals(stack2);

    }
}

2、直接用两个指针记录left和right即可。

public class Solution {
    public boolean isPalindrome(String s) {

        char[] word = s.toLowerCase().toCharArray();
        int len = s.length();
        int left = 0,right = len-1;
        while( left < right ){

            if( !((word[left] >= ‘0‘ && word[left] <= ‘9‘) || (word[left]>=‘a‘ && word[left]<=‘z‘ )) )
                left++;
            else if( !((word[right] >= ‘0‘ && word[right] <= ‘9‘) || (word[right]>=‘a‘ && word[right]<=‘z‘ )) )
                right--;
            else if( word[left] == word[right]){
                left++;
                right--;
            }else
                return false;
        }
        return true;

    }
}
时间: 2024-10-04 01:29:25

leetcode 125. Valid Palindrome ----- java的相关文章

leetCode 125. Valid Palindrome 字符串

125. Valid Palindrome Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a plan, a canal: Panama" is a palindrome."race a car" is not a palindrome. Note:Hav

Java [Leetcode 125]Valid Palindrome

题目描述: Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a plan, a canal: Panama" is a palindrome."race a car" is not a palindrome. Note:Have you consider t

[LeetCode] 125. Valid Palindrome 有效回文

Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a plan, a canal: Panama" is a palindrome."race a car" is not a palindrome. Note:Have you consider that th

Java for LeetCode 125 Valid Palindrome

Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example, "A man, a plan, a canal: Panama" is a palindrome. "race a car" is not a palindrome. 解题思路: 注意题目,忽略大小写,忽略非字母或数字,JA

leetcode 125. Valid Palindrome

题目描述 c语言中的tolowe(A)函数,将字符A转换为小写: isalpha(a) 判断a是不是一个字符 isdigital(a)判断a是不是一个数字,isalnum(a)判断a是不是一个数字或者字符 只判断字符串中字符是不是回文 空字符串是一个回文字符串 class Solution { public: bool isPalindrome(string s) { int i = 0; int j = s.size() -1; while(i < j){ while(!isalnum(s[i

leetcode -day13 Valid Palindrome &amp; Triangle &amp; Pascal&#39;s Triangle I II

1.  Valid Palindrome Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example, "A man, a plan, a canal: Panama" is a palindrome. "race a car" is not a palindrome. Note:

125. Valid Palindrome【easy】

125. Valid Palindrome[easy] Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a plan, a canal: Panama" is a palindrome."race a car" is not a palindrome. No

125. Valid Palindrome(js)

125. Valid Palindrome Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. Note: For the purpose of this problem, we define empty string as valid palindrome. Example 1: Input: "A man, a plan, a

【LeetCode】125 - Valid Palindrome

Given a string, determine if it is a palindrome, considering only alphanumeric characters and ignoring cases. For example,"A man, a plan, a canal: Panama" is a palindrome."race a car" is not a palindrome. Note:Have you consider that th