9. Palindrome Number

Posted whl-hl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了9. Palindrome Number相关的知识,希望对你有一定的参考价值。

1. 问题描述

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.
Tags: Math
Similar Problems: (E) Palindrome Linked List

2. 解题思路


3. 代码

class Solution {
public:
    bool isPalindrome(int x)
    {
        if (x < 0)
        {
            return false;
        }

        int len = 1;
        for (; (x/len) >= 10; len *= 10);

        while (0 != x) 
        {
            int left = x / len;
            int right = x % 10;

            if(left != right)
            {
                return false;
            }

            x = (x%len) / 10;
            len /= 100;
        }
        return true;
    }
};

4. 反思

以上是关于9. Palindrome Number的主要内容,如果未能解决你的问题,请参考以下文章

9. Palindrome Number

leetcode 9. palindrome number

9. Palindrome Number

9. Palindrome Number

9. Palindrome Number

#Leetcode# 9. Palindrome Number