题解 | #回文数字#

回文数字

http://www.nowcoder.com/practice/35b8166c135448c5a5ba2cff8d430c32

回文数字
在不使用额外的内存空间的条件下判断一个整数是否是回文数字

输入:121
返回值:true

方法一 暴力

将数的最后一位通过%运算不断的取出能发现就是x的翻转数,通过翻转的数与原数x比较如果相同说明是回文数
图片说明

   bool isPalindrome(int x) {
        // write code here
        if(x < 0) return false;
        int st = 0, f = x;
        while(f){    // 将字符串翻转
            st *= 10;
            st += f % 10;
            f /= 10;
        }
        return st == x;
    }

时间复杂度: 遍历了数字的长度
空间复杂度: 只需要若干个变量

方法二 STL函数

将int转成字符串进行reverse翻转,特判一下负数即可

bool isPalindrome(int x) {
        // write code here
        if(x < 0) return false;
        string f=to_string(x), str = f; //将数字转成字符串
        reverse(str.begin(), str.end());//翻转字符串
        if(f==str)return true;
        else return false;
    }

时间复杂度: reverse的复杂度为
空间复杂度: 数字转字符串所以数字有多长开的空间就多大

全部评论

相关推荐

今天 11:23
重庆邮电大学 C++
点赞 评论 收藏
分享
面试摇了我吧:啊哈哈面试提前五个小时发,点击不能参加就是放弃
点赞 评论 收藏
分享
10-28 14:42
门头沟学院 Java
watermelon1124:因为嵌入式炸了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务