LeetCode 9. Palindrome Number

public class Solution {
    public boolean isPalindrome(int x) {
        String s=String.valueOf(x);
        char c[]= s.toCharArray();
        if(x<0) return false;
        if(c.length==1) return true;
        int i,j;
        for(i=0,j=s.length()-1;i<=j;)
        {
            if(c[i]==c[j])
            {
                i++;
                j--;
            }else
            return false;
        }
        if(i>j) return true;
        else return false;
    }
}

你可能感兴趣的:(Algorithm,LeetCode)