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

【Leetcode】Palindrome Number

时间:2014-06-22 20:43:56      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   http   tar   

Determine whether an integer is a palindrome. Do this without extra space.

思路:若使用【Leetcode】Reverse Integer 的方法,判断反转后的整数是否与原整数相同,则可能出现溢出情况;又因为题目要求不适用额外空间,可以之间对比整数第一个与最后一个数的值,再依次类推。

class Solution {
public:
    bool isPalindrome(int x) {
        if(x < 0)   return false;
        
        int bitNum = 0;
        int temp = x;
        while(temp != 0)
        {
            temp /= 10;
            bitNum++;
        }
        
        for(int i = 1; i <= bitNum / 2; i++)
        {
            if((x / (int)pow(10, bitNum - i)) % 10 == (x % (int)pow(10, i)) / (int)pow(10, i - 1))
                continue;
            else
                return false;
        }
        
        return true;
    }
};

【Leetcode】Palindrome Number,布布扣,bubuko.com

【Leetcode】Palindrome Number

标签:style   class   blog   code   http   tar   

原文地址:http://blog.csdn.net/lipantechblog/article/details/32708223

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