LeetCode7: Reverse Integer

来源:互联网 发布:mac词典发音 编辑:程序博客网 时间:2024/04/30 03:23

Reverse digits of an integer.

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

Have you thought about this?

Here are some good questions to ask before coding. Bonus points for you if you have already thought through this!

If the integer's last digit is 0, what should the output be? ie, cases such as 10, 100.

Did you notice that the reversed integer might overflow? Assume the input is a 32-bit integer, then the reverse of 1000000003 overflows. How should you handle such cases?

Throw an exception? Good, but what if throwing an exception is not an option? You would then have to re-design the function (ie, add an extra parameter)

public class Solution {    public int reverse(int x) {        // Start typing your Java solution below        // DO NOT write main() function        if(x==0)            return x;        boolean flag = x<0;        if(flag)            x = -x;        int res = 0;        while(x!=0){            int digit = x%10;            x = x/10;            if(res!=0 || digit !=0)                res = res*10+digit;        }                if(flag)            res = -res;                    if(res>Integer.MAX_VALUE)            res = Integer.MAX_VALUE;                if(res<Integer.MIN_VALUE)            res = Integer.MIN_VALUE;                        return res;       }}

------------------------------------------------------------------------------------------------------------------------------------------

LL's solution:

public class Solution {    public int reverse(int x) {        // Start typing your Java solution below        // DO NOT write main() function        if(x<10 && x>-10)            return x;                     long res = 0;               boolean pos = true;        if(x<0){            pos = false;            x = -x;        }        int base = 10;        while(x>=base){            base*=10;        }        int rbase = 1;        base /= 10;        while(base>=1){            int tmp = (int)x/base;            res += tmp*rbase;            x -= tmp*base;            rbase *= 10;            base /= 10;        }                if(pos == true && res>Integer.MAX_VALUE){            res = Integer.MAX_VALUE;        }        else if(pos==false){            if(res<Integer.MIN_VALUE)                res = Integer.MIN_VALUE;            else                res = -res;        }                        return (int)res;    }}


原创粉丝点击