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

LeetCode:Palindrome Number

时间:2014-11-05 21:35:26      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:algorithm   leetcode   

题目描述:

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


代码:

bool Solution::isPalindrome(int x)
{
    int a = x;
    int b = 0;
    while(a > 0)
    {
        b = b * 10 + a % 10;
        a = a % 10;
    }
    return b == x;
}



LeetCode:Palindrome Number

标签:algorithm   leetcode   

原文地址:http://blog.csdn.net/yao_wust/article/details/40829847

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