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

[leetcode]Palindrome Number

时间:2014-12-04 20:04:19      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:leetcode   算法   

问题描述:

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

基本思路:

考虑到回文的特点,根据给定数字获得与给定数字低位高位反序的数字。如果是回文数,则两数想等;否则不等。(即使反序数字溢出,也可的到正确结果)

代码:

bool isPalindrome(int x) {  //C++
        int test = 0;
        int tmp = x;
        while(tmp>0 )
        {
            test = test*10+tmp%10;
            tmp = tmp/10;
        }
        return (test==x);
    }


[leetcode]Palindrome Number

标签:leetcode   算法   

原文地址:http://blog.csdn.net/chenlei0630/article/details/41727807

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