[LeetCode]9. 回文数

Posted moonpie-sun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode]9. 回文数相关的知识,希望对你有一定的参考价值。

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

示例 1:

输入: 121
输出: true
示例 2:

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

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

C++

class Solution {
public:
    bool isPalindrome(int x) {
       if (x < 0 || (x % 10 == 0 && x != 0)) return false;
       int div = 1;
       while (x / div >= 10) div *= 10;
       while (x > 0) {
           int left = x / div;
           int right = x % 10;
           if (left != right) return false;
           x = (x % div) / 10;
           div /= 100;
       } 
       return true;
    }
};
class Solution {
public:
    bool isPalindrome(int x) {
       if (x < 0) return false;
       int div = 1;
       while (x / div >= 10) div *= 10;
       while (x > 0) {
           int left = x / div;
           int right = x % 10;
           if (left != right) return false;
           x = (x % div) / 10;
           div /= 100;
       } 
       return true;
    }
};
参考来源https://www.cnblogs.com/grandyang/

以上是关于[LeetCode]9. 回文数的主要内容,如果未能解决你的问题,请参考以下文章

leetCode第9题——回文数

LeetCode 9. 回文数

leetcode 9

LeetCode Golang 9.回文数

[LeetCode]9. 回文数

leetcode 9 回文数