Palindrome Number

Determine whether an integer is a palindrome. Do this without extra space.

click to show spoilers.

Some hints:

Could negative integers be palindromes? (ie, -1)

If you are thinking of converting the integer to string, note the restriction of using extra space.

You could also try reversing an integer. However, if you have solved the problem "Reverse Integer", you know that the reversed integer might overflow. How would you handle such case?

There is a more generic way of solving this problem.

 class Solution {

public:
    bool isPalindrome(int x) 
    {
        if(x<0return false;
        int left=1;
        int y=x;
        while(y>=10)
        {
            y/=10;
            left*=10;
        }
        
        while(true)
        {
            if(left<=1return true;
            int d=x%10;
            if(x/left!=d) return false;
            
            x=x-d*left;
            x=x/10;
            left=left/100;
        }
    }
}; 
原文地址:https://www.cnblogs.com/erictanghu/p/3759220.html