LeetCode Palindrome Number

本文介绍了两种判断整数是否为回文数的方法:一种通过数位拆解并转换为字符串进行对比;另一种通过逆置整数进行比较。这两种方法适用于正数和零,但不适用于负数。

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

class Solution {
public:
    char temp[1000];//暂存拆解出来的数字
    string str1;
    string str2;
    
    bool isPalindrome(int x) {
        if (x<0) {
            return false;
        }
        if (x>0) {
            //数位拆解
            int cnt=0;
            while (x) {
                temp[cnt++]=x%10+'0';
                x/=10;
            }
            str1=(string)temp;
            str2=str1;
            reverse(str1.begin(), str1.end());
            if (str1==str2) {
                return true;
            }else
                return false;
        }
        return true;//x==0
    }
};

做法2:


数字逆置:

class Solution {
public:

    bool isPalindrome(int x){
        int original=x;
        if (x<0) {
            return false;
        }
        if (x>0) {
            //reverse integer
            int tmp=0;
            while (x) {
                tmp=tmp*10+x%10;
                x/=10;
            }
            if (original==tmp) {
                return true;
            }else
                return false;
        }
        return true;//x==0
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值