1 Star 0 Fork 0

刘雨欣/algorithm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
leedcode_09.c 630 Bytes
一键复制 编辑 原始数据 按行查看 历史
yuxin 提交于 2024-01-26 19:15 . [新增]leedCode回文数
#include <stdio.h>
#include <stdbool.h>
bool isPalindrome(int x)
{
if (x < 0 || (x % 10 == 0 && x != 0)) //负数不是回文数,以及如果最后一位是0,那么只有0本身才是回文数
{
return false;
}
int revertedNumber = 0;
int original = x; // 保存原始数值,用于最后的比较
while (x != 0)
{
revertedNumber = revertedNumber * 10 + x % 10; //当数组长度为奇数时,通过revertedNumber/10去除中间的数字
x /= 10;
}
return original == revertedNumber; // 只比较原始数值和反转后的数值
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/SUliuyuxin/algorithm.git
[email protected]:SUliuyuxin/algorithm.git
SUliuyuxin
algorithm
algorithm
master

搜索帮助