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

Leet code problem 7: reverse integer digit

时间:2017-09-16 19:05:19      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:logs   max   rem   blog   min   style   main   solution   pre   

class Solution {
public:
    int reverse(int x) {
        int ret = 0;
    int int_max_divide_10 = INT_MAX / 10;
    int int_max_mod_10 = INT_MAX % 10;
    int int_min_divide_10 = INT_MIN / 10;
    int int_min_mod_10 = INT_MIN % 10;
    while (x != 0){
        int remainder =  x % 10;
        if (x > 0 && (ret > int_max_divide_10 ||
                (ret == int_max_divide_10 && remainder > int_max_mod_10))
                ||
                x < 0 && (ret < int_min_divide_10 ||
                    (ret == int_min_divide_10 && remainder < int_min_mod_10)))
        {
            return 0;
        }
        ret *= 10;
        ret += remainder;
        x /= 10;
    }
        return ret;
    }
};

 

Leet code problem 7: reverse integer digit

标签:logs   max   rem   blog   min   style   main   solution   pre   

原文地址:http://www.cnblogs.com/nosaferyao/p/7531907.html

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