Skip to content
在本页面

回文数

给你一个整数 x ,如果 x 是一个回文整数,返回 true ;否则,返回 false 。

回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。

  • 例如,121 是回文,而 123 不是。

示例 1:

输入:x = 121
输出:true

示例 2:

输入:x = -121
输出:false
解释:从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。

示例 3:

输入:x = 10
输出:false
解释:从右向左读, 为 01 。因此它不是一个回文数。

提示:

  • -231 <= x <= 231 - 1

进阶:你能不将整数转为字符串来解决这个问题吗?

转换为字符串判断

TypeScript
function isPalindrome(x: number): boolean {
  if (x === 0) return true;
    // 处理边界情况, 小于0, 不可能是回文数
    if (x < 0 || (x % 10 === 0)) return false;
    return x === +x.toString().split('').reverse().join('');
};
console.log(isPalindrome(121)
console.log(isPalindrome(-121)
console.log(isPalindrome(10)

反转后半部分的数字

提示: 如何知道反转数字的位数已经达到原始数字位数的一半?

TypeScript
function isPalindrome(x: number): boolean {
    if (x === 0) return true;
    if (x < 0 || (x % 10 === 0)) return false;
    let reversed = 0;
    while(x > reversed) {
        reversed = reversed * 10 + x % 10;
        x = Math.floor(x / 10)
    }
    return x === reversed || x === Math.floor(reversed / 10)
};
console.log(isPalindrome(0)
console.log(isPalindrome(-121)
console.log(isPalindrome(11)
console.log(isPalindrome(1221)
console.log(isPalindrome(12321) // 长度为奇数只需判断 12 === 12 , 无需判断 3

Released under the MIT License.