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

LeetCode--Palindrome Number

时间:2015-01-08 18:12:09      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:leetcode   string   回文   

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

class Solution 
{
public:
    bool isPalindrome(int x) 
    {
        if(x < 0)
            return false;
        int org = x;
        int temp=0;
        while(x>0)
        {
            temp = temp*10 + x%10;
            x = x/10;
        }
        if(temp == org)
            return true;
        return false;
    }
};


LeetCode--Palindrome Number

标签:leetcode   string   回文   

原文地址:http://blog.csdn.net/shaya118/article/details/42525175

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