LeetCode:Palindrome Number

本文介绍了一种不使用额外空间来判断整数是否为回文数的方法,通过位数判断和比较首位与末位数字来实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

问题描述:

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

思路:

1、求出位数;

2、取出数的第一位和最后一位比较,若相同,将第一位和最后一位同时去掉,然后将base维度降低100,再比较新数的头尾,如此循环下去;如果不等,直接返回false。

代码:

代码1

class Solution {
public:
    bool isPalindrome(int x) {
        if(x < 0)  return false;
        if(x == 0)  return true;
        int temp = x;
        int sum = 0;
        while(x > 0){
            sum = sum * 10 + temp % 10;
            temp /= 10;
        }
        return (sum == temp)?true:false;
    }
};
超时,虽然能实现功能,但是不能AC。

代码2

class Solution {
public:
    bool isPalindrome(int x) {
        if(x < 0)  return false;
        if(x == 0)  return true;
        int div = 1;
        while(x / div >= 10)
            div *= 10;
        while(x != 0){
            int leftdigit = x / div;
            int rightdigit = x % 10;
            if(leftdigit != rightdigit)   return false;
            x = (x % div) / 10;
            div /= 100;
        }
        return true;
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

fullstack_lth

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值