[leetcode]33 Palindrome Number

题目链接:https://leetcode.com/problems/palindrome-number/
Runtimes:131ms

1、问题

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

2、分析

删除回文,传统思路是按照顺序将数字存入数组,然后进行字符串回文检查。但是问题要求不要有额外空间,想了想也是可以实现的,只要能取到头尾两个数字即可。

3、总结

陷阱:1、负数都不是回文串;2、边界检查,如int最大值1874994781;3、条件判断的选择x / c >= 10,之前傻傻的选了减法,即x - c < c.

4、实现

class Solution {
public:
    bool isPalindrome(int x) {
        if (x < 0)
            return false;
        if (x < 10)
            return true;
        int c = 10;
        while (x / c >= 10)
        {
            c *= 10;
        }
        int a = 10;
        while (c > 0)
        {
            if (x % 10 != x / c)
                return false;
            x %= c;
            x /= 10;
            c /= 10;
            c /= 10;
        }
        return true;
    }
};

5、反思

待改进。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值