美文网首页
[回文] LeetCode9. Palindrome Numbe

[回文] LeetCode9. Palindrome Numbe

作者: wshxj123 | 来源:发表于2017-07-11 13:04 被阅读18次

    除以10以后,再构造一个newx,相等则是回文数

    class Solution {
    public:
        bool isPalindrome(int x) {
    
            if(x < 0 || (x != 0 && x % 10 == 0)) //负数&结尾是0的数(不包括0),不是回文数
                return false;
            
            int newx = 0;
            while(newx < x) { //少掉一半的循环
                int re = x % 10;
                x = x / 10;
                newx = newx * 10 + re;
            }
            
            return ((x == newx) || (x == newx / 10)); //回文数有奇数长度和偶数长度两种情况
        }
    };
    

    相关文章

      网友评论

          本文标题:[回文] LeetCode9. Palindrome Numbe

          本文链接:https://www.haomeiwen.com/subject/vgzphxtx.html