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

[LeetCode] Palindrome Number

时间:2014-11-23 11:38:33      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   sp   div   log   bs   as   nbsp   

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

 

因为都额外空间有限制所以不能把他先转成字符串然后用两个指针扫了。负数不算回文数是因为前面多了个负号么=_= 这样的话我只能想到一个办法,就是反转一个数字,同时检查他是否溢出,溢出则返回false,否则对比反转后的数字是否跟原来的数字相等,相等则是回文数。

 

bool isPalindrome(int x) {
    if (x < 0) return false;
    int t = x;
    int v = 0;
    while (t) {
        if (v / 10 > INT_MAX) return false;
        v = v * 10 + (t % 10);
        t /= 10;
    }
    
    if (v == x) return true;
    return false;
}

 

[LeetCode] Palindrome Number

标签:style   blog   color   sp   div   log   bs   as   nbsp   

原文地址:http://www.cnblogs.com/agentgamer/p/4109965.html

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