码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 9.Palindrime Number

时间:2016-10-16 16:09:50      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

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

标签:

原文地址:http://www.cnblogs.com/zyqBlog/p/5966525.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!