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

LeetCode7——Reverse Integer

时间:2015-01-26 11:57:48      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:leetcode   c++   acm   

Reverse digits of an integer.

Example1: x = 123, return 321
Example2: x = -123, return -321

题目大意

反转int的数字。

难度系数: 容易

实现

易错点是没有做溢出检查。后来我看了下网上的答案,写的比我好很多(好惭愧)。所以这题就给出个网上的答案吧。

int reverse(int x) {
    int y=0;
    int n;
    while( x != 0){
        n = x%10;
        if (y > INT_MAX/10 || y < INT_MIN/10){
             return 0;
        }
        y = y*10 + n;
        x /= 10;
    }
    return y;
}

LeetCode7——Reverse Integer

标签:leetcode   c++   acm   

原文地址:http://blog.csdn.net/booirror/article/details/43150235

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