首页 > 代码库 > [leetcode] Reverse Integer
[leetcode] Reverse Integer
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).
https://oj.leetcode.com/problems/reverse-integer/
思路:从低到高依次取得数字的每一位累加到新数字中。
public class Solution { public int reverse(int x) { int result = 0; boolean neg = false; if (x < 0) { neg = true; x = -x; } int a = 0; while (x != 0) { a = x % 10; x /= 10; result = result * 10 + a; } if (neg) result = -result; return result; } public static void main(String[] args) { System.out.println(new Solution().reverse(123)); System.out.println(new Solution().reverse(-123)); System.out.println(new Solution().reverse(1)); System.out.println(new Solution().reverse(-1)); System.out.println(new Solution().reverse(0)); }}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。