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

Leetcode--Reverse Integer

时间:2016-11-10 03:16:06      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:log   字符   检测   输入   注意   etc   turn   问题   输出   

这道题很简单,需要注意的就是注意数字越界问题,不仅仅是输入的字符需要检测,有时候会有输入字符没越界,但是输出时的数字越界的问题,所以在最后也要设置越界检测。

static int reverse(int x) {
        int res = 0;
        while (x) {
            res = res * 10 + x % 10;
            x /= 10;
        }
        return (res < INT_MIN || res > INT_MAX) ? 0 : res;
    }

 

Leetcode--Reverse Integer

标签:log   字符   检测   输入   注意   etc   turn   问题   输出   

原文地址:http://www.cnblogs.com/INnoVationv2/p/6049415.html

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