LeetCode_Palindrome Number

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

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) {
        // Start typing your C/C++ solution below
        // DO NOT write int main() function
        if( 0 > x) return false;
        
        int base = 1;
        while(10 <= x/base) base *= 10;
        
        int first, last;
        while( 10 <= x)
        {
            last  = x%10;
            first = x/base;
            if(last != first) return false;
            x = (x%base)/10;
            base /= 100 ;
        
        }
        
        return true;
        
    }
};

 

posted @ 2013-07-27 11:39  冰点猎手  阅读(215)  评论(0编辑  收藏  举报