Wednesday, April 3, 2013

Day 9, 9 Palindrome Number

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 (x < 0) { 
            return false;
        }
        
        // reverse
        int temp = x;
        int y = 0;
        while (temp>0) { 
            y = 10 * y + temp % 10;
            temp = temp / 10;
        }
        
        if (x != y) {
            return false;
        }
        return true;
    }
};




No comments:

Post a Comment