#413 Reverse Integer

题目描述:

Reverse digits of an integer. Returns 0 when the reversed integer overflows (signed 32-bit integer).

Example

Given x = 123, return 321

Given x = -123, return -321

题目思路:

这题需要考虑的corner case我觉得是INT_MIN。这题我先把int分成两部分:sign和正数部分用string来表示。然后用一个long long去算reverse之后的正数部分,再乘以sign。如果overflow就返回0.

Mycode(AC = 44ms):

class Solution {
public:
    /**
     * @param n the integer to be reversed
     * @return the reversed integer
     */
    int reverseInteger(int n) {
        // Write your code here
        // conver the int to sign and string
        int sign = n >= 0? 1 : -1;
        string strn = to_string(sign * (long long)n);
        long long result = 0;
        
        // add to results reversely
        for (int i = strn.length() - 1; i >= 0; i--) {
            result = result * 10 + int(strn[i]) - int('0');
            if (result - 1 >= INT_MAX) {
                break;
            }
        }
        
        result *= sign; // add sign info
        
        if (result >= INT_MAX || result <= INT_MIN) {
            return 0;
        }
        else {
            return (int)result;
        }
    }
};


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值