leetcode 9.Palindrime Number

Posted prog123

tags:

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

public class Solution {
    public boolean isPalindrome(int x) {
        
        if(x < 0)
        return false;
        
        if(x < 10)
        return true;
        
        int i = 1;
        int tmpx = x;
        while(tmpx/10 != 0)
        {
            i *= 10;
            tmpx /= 10;
        }
        
        while(x != 0)
        {
            int left = x % 10;
            int right = x / i;
            
            if(left != right)
            return false;
            else
            {
                x = (x%i)/10;//x%i 去头 (x%i)/10去尾
                i /= 100;//少了两个数字,位数少2
            }
        }
        
        return true;
    }
}

 

以上是关于leetcode 9.Palindrime Number的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 415 字符串相加

Leetcode-43 划水记录06 大数乘法

leetcode1342

#leetcode刷题之路43-字符串相乘

力扣leetcode第 280 场周赛

力扣leetcode第 280 场周赛