天天看点

LeetCode 9 Palindrome NumberLeetCode 9

LeetCode 9

Palindrome Number

  • Problem Description:

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

  • Hints:

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

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

    3. 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?

  • Solution:
class Solution {
public:
    bool isPalindrome(int x) {
        if (x < )
            return false;
        int n;
        string result = "";
        int flag = ;
        while(x != ) {
            n = x%;
            result += n+'0';
            x = x/;
        }
        for (int i = ; i < result.length()/; i++) {
            if (result[i] == result[result.length()-i-]) {
                continue;
            }
            flag = ;
        }
        if (flag == )
            return true;
        return false;
    }
};