码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode-9. Palindrome Number

时间:2018-03-24 11:34:32      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:his   turn   lin   gpo   eth   div   回文   如何   不能   

1 题目

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

判断一个数字是否是回文数字,不用额外的空间。

2 分析

如果允许使用额外的空间,那么就将数字头尾颠倒,然后判断相等。但是缺陷在于,不能用在64位数字上。因为溢出以后不能判断了

 

可以采用掐头去尾的方式,如果头尾相等,那么就去掉头尾

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

        int len = 1;

        // 当 x/ len 小于10的时候,len*10 就比x大了。
        // 此时x%len是一个个位数
        while (x / len >= 10)
        {
            len *= 10;
        }

        while (x > 0)
        {
            // 取头尾
            int left = x / len;
            int right = x % 10;

            if (left != right)
            {
                return false;
            }
            else
            {
                // 如果想等,那么掐头去尾
                x = (x % len) / 10;
                len /= 100;
            }
        }
        return true;
    }
};

 

3 总结

嗯学到了,如何求一个数字的,嗯,就是倍数,取模以后剩下个位数。这种方式直观。

 

leetcode-9. Palindrome Number

标签:his   turn   lin   gpo   eth   div   回文   如何   不能   

原文地址:https://www.cnblogs.com/perfy576/p/8637928.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!