每日leetcode-Palindrome Number

3,204次阅读
没有评论

共计 541 个字符,预计需要花费 2 分钟才能阅读完成。

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

Some hints:Could negative integers be palindromes? (ie, -1)

If you are thinking of converting the integer to string, note the restriction of using extra space.

You could also try reversing an integer. However, if you have solved the problem “Reverse Integer”, you know that the reversed integer might overflow. How would you handle such case?

There is a more generic way of solving this problem.


 

这是最快的OJ题,一分钟搞定。。。。。

class Solution {
public:
    bool isPalindrome(int x) {
        int tmp=x;
        int result=0;
        while(x>0)
        {
            result=result*10+x%10;
            x=x/10;
        }
        return result==tmp;

    }
};
正文完
请博主喝杯咖啡吧!
post-qrcode
 
admin
版权声明:本站原创文章,由 admin 2016-04-13发表,共计541字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)
验证码