友情支持

如果您觉得这个笔记对您有所帮助,看在D瓜哥码这么多字的辛苦上,请友情支持一下,D瓜哥感激不尽,😜

支付宝

微信

有些打赏的朋友希望可以加个好友,欢迎关注D 瓜哥的微信公众号,这样就可以通过公众号的回复直接给我发信息。

wx jikerizhi

公众号的微信号是: jikerizhi因为众所周知的原因,有时图片加载不出来。 如果图片加载不出来可以直接通过搜索微信号来查找我的公众号。

7. Reverse Integer

Given a 32-bit signed integer, reverse digits of an integer.

Example 1:
Input: 123
Output: 321
Example 2:
Input: -123
Output: -321
Example 3:
Input: 120
Output: 21

Note:

Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [-231, 231- 1]. For the purpose of this problem, assume that your function returns 0 when the reversed integer overflows.

解题分析

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
 * @author D瓜哥 · https://www.diguage.com
 * @since 2018-07-01
 */
public static int reverse(int x) {
  int sign = 1;
  if (x < 0) {
    sign = -1;
    if (x < -Integer.MAX_VALUE) {
      return 0;
    }
    x = -x;
  }
  int result = 0;
  while (x > 0) {
    int digit = x % 10;
    int num = result * 10 + digit;
    if ((num - digit) / 10 != result) {
      return 0;
    }
    result = num;

    x /= 10;
  }
  return sign * result;
}

public static int reverse1(int x) {
  if (x == 0
    || x > Math.pow(2, 31)
    || x < -Math.pow(2, 31)) {
    return 0;
  }

  int sign = 1;
  int positiveNum = x;
  if (x < 0) {
    sign = -1;
    positiveNum = x * sign;
  }

  boolean zeroOfEnd = true;
  List<Integer> bitNums = new ArrayList<>(25);
  for (int i = positiveNum; i > 0; ) {
    int bitNum = i % 10;
    i = i / 10;
    if (zeroOfEnd && bitNum == 0) {
      continue;
    }
    bitNums.add(bitNum);
    if (zeroOfEnd) {
      zeroOfEnd = false;
    }
  }

  long result = 0;
  for (int j = 0; j < bitNums.size(); j++) {
    result += bitNums.get(j) * ((long) Math.pow(10, bitNums.size() - j - 1));
  }
  if (result > Integer.MAX_VALUE) {
    return 0;
  }

  return (int) result * sign;
}