ARTS打卡:第十八周

ARTS打卡:第十八周

每周完成一个ARTS:

  1. Algorithm:每周至少做一个 leetcode 的算法题
  2. Review:阅读并点评至少一篇英文技术文章
  3. Tip:学习至少一个技术技巧
  4. Share:分享一篇有观点和思考的技术文章

Algorithm

8. String to Integer (atoi) (Medium)

Implement atoi which converts a string to an integer.

The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus sign followed by as many numerical digits as possible, and interprets them as a numerical value.

The string can contain additional characters after those that form the integral number, which are ignored and have no effect on the behavior of this function.

If the first sequence of non-whitespace characters in str is not a valid integral number, or if no such sequence exists because either str is empty or it contains only whitespace characters, no conversion is performed.

If no valid conversion could be performed, a zero value is returned.

Note:

  • Only the space character ' ' is considered as whitespace character.
  • Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−231, 231 − 1]. If the numerical value is out of the range of representable values, INT_MAX (231 − 1) or INT_MIN (−231) is returned.

Example 1:

Input: “42”
Output: 42

Example 2:

Input: “ -42”
Output: -42
Explanation:

The first non-whitespace character is ‘-‘, which is the minus sign.

Then take as many numerical digits as possible, which gets 42.

Example 3:

Input: “4193 with words”
Output: 4193
Explanation: Conversion stops at digit ‘3’ as the next character is not a numerical digit.

Example 4:

Input: “words and 987”
Output: 0
Explanation: The first non-whitespace character is ‘w’, which is not a numerical digit or a +/- sign. Therefore no valid conversion could be performed.

Example 5:

Input: “-91283472332”
Output: -2147483648
Explanation: The number “-91283472332” is out of the range of a 32-bit signed integer.Thefore INT_MIN (−231) is returned.

@DevDocshttps://leetcode.com/problems/string-to-integer-atoi/

题意(译文)

请你来实现一个 atoi 函数,使其能将字符串转换成整数。

首先,该函数会根据需要丢弃无用的开头空格字符,直到寻找到第一个非空格的字符为止。

当我们寻找到的第一个非空字符为正或者负号时,则将该符号与之后面尽可能多的连续数字组合起来,作为该整数的正负号;假如第一个非空字符是数字,则直接将其与之后连续的数字字符组合起来,形成整数。

该字符串除了有效的整数部分之后也可能会存在多余的字符,这些字符可以被忽略,它们对于函数不应该造成影响。

注意:假如该字符串中的第一个非空格字符不是一个有效整数字符、字符串为空或字符串仅包含空白字符时,则你的函数不需要进行转换。

在任何情况下,若函数不能进行有效的转换时,请返回 0。

说明:

假设我们的环境只能存储 32 位大小的有符号整数,那么其数值范围为 [−231, 231 − 1]。如果数值超过这个范围,请返回 INT_MAX (231 − 1) 或 INT_MIN (−231) 。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/string-to-integer-atoi

解题思路(1)

仔细阅读题目,我们可以从中得出这道题的限制条件:

  1. 函数需要过滤开头的空格字符,直到寻找到第一个非空格的字符为止
  2. 第一个非空字符为正或者负号时,需要保留,与之后的数字组合起来
  3. 有效整数部分之后,出现非数字字符,返回前面的有效整数部分(emm….这一点,根据题意,我根本看不出来,是多次踩坑后,得来的血泪经验,巨坑….)
  4. 假如该字符串中的第一个非空格字符不是一个有效整数字符、字符串为空或字符串仅包含空白字符时,返回0
  5. 只能存储 32 位大小的有符号整数,那么其数值范围为 [−231, 231 − 1];如果超出范围,则返回 INT_MAX (231 − 1) 或 INT_MIN (−231) 。

根据以上的限制,我们的解题思路就可以这样:

  1. 借鉴上周的解题思路,由于ASCII 码表加上拓展集共256个字符,所以我们可以定义一个长度为256的整形数组来模拟散列表,下标为字符的值,数组的值用于标识字符。
  2. 根据限制条件来写判断条件,详情请查看实现代码

代码实现(1)

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
66
67
68
69
70
71
72
73
74
75
public class Solution{
private static final int map[] = new int[256];

static {
// 初始化字符 '0' - '9'
for (int i = 0; i < 10; i++) {
map[i + '0'] = i + 1;
}
}

public int myAtoi(String str) {
if(str == null){
return 0;
}
// 去掉字符串首尾的空格
String trim = str.trim();
if (trim.isEmpty()) {
return 0;
}
// 将字符串转成字符数组
char[] chars = trim.toCharArray();
// 用于标识数字的正负 1 代表的是正数,-1代表的是负数
int sign = 1;
// 限制条件2
int start = 0;
if (chars[0] == '-') {
sign = -1;
start++;
}else if (chars[0] == '+'){
start++;
}
// 表示遇到有效数字字符个数
int count = 0;
StringBuilder tmp = new StringBuilder();
for (int i = start; i < chars.length; i++) {
// 限制条件3,count != 0表示有效字符存在了;map[chars[i]] = 0 表示当前字符不是‘0’-‘9’
if (count != 0 && map[chars[i]] == 0) {
break;
}
// 限制条件4
if (map[chars[i]] == 0 && count == 0) {
return 0;
}
// 当前字符属于‘0’-‘9’,需要保存起来
if (map[chars[i]] != 0) {
// 有效字符+1
count++;
tmp.append(chars[i]);
}
}
// 将有效数字字符串转成数组,不直接强转的原因是,存在限制条件5,可能会溢出
char[] cChars = tmp.toString().toCharArray();
int result = 0;
int length = 0;
// 从数值的低位遍历至高位
for (int i = cChars.length - 1; i >= 0; i--) {
// 转成有效数字
int c = cChars[i] - '0';
int newResult = result + c * (int) StrictMath.pow(10, length);
// 判断溢出的方法,当新值➗当前位数后,得到的结果与当前的数字不一致,那么就是出现溢出的情况了,假设字符串为“8678”, 8/1 = 8, 78/10 = 7,以此类推,只有溢出时,才会不一致
if (newResult / (int) StrictMath.pow(10, length) != c) {
// 根据正负,返回不同的结果
if (sign > 0) {
return Integer.MAX_VALUE;
} else {
return Integer.MIN_VALUE;
}
}
result = newResult;
++length;
}
// 相当于 result * 1 或 result * -1
return result * sign;
}
}

运行结果(1)

Runtime: 3 ms, faster than 25.42% of Java online submissions for String to Integer (atoi).

Memory Usage: 37 MB, less than 81.37% of Java online submissions for String to Integer (atoi).

emm….解是解出来了,但结果就不怎么理想了,代码也太冗余了点

解题思路(2)

与解题思路(1)一致,代码上进行调整,减少for循环,降低时间复杂度,详情查看代码实现。

代码实现(2)

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
public class Solution{
private static final int map[] = new int[256];

static {
// 初始化字符 '0' - '9'
for (int i = 0; i < 10; i++) {
map[i + '0'] = i + 1;
}
}

public int myAtoi(String str) {
if (str == null) {
return 0;
}
// 去掉字符串首尾的空格
String s = str.trim();
if (s.isEmpty()) {
return 0;
}
// 用于标识数字的正负 1 代表的是正数,-1代表的是负数;start 表示开始的下标;result表示数字的累加结果
int sign = 1, start = 0, result = 0;
// 满足限制条件2
if (s.charAt(0) == '-') {
sign = -1;
start++;
} else if (s.charAt(0) == '+') {
start++;
}
// 当遍历字符为无效字符时,终止遍历
while (start < s.length() && map[s.charAt(start)] != 0) {
// 将当前字符转为数值
int num = s.charAt(start) - '0';
// 当前累加数值大于 Integer.MAX_VALUE / 10,那么接下来,继续累加必然会溢出
// 还需排除一种特殊情况,当前累加数值等于 Integer.MAX_VALUE / 10,需要比较接下来的累加值是否大于 Integer.MAX_VALUE的最后一位数,大于则溢出
if (result > Integer.MAX_VALUE / 10 ||
(result == Integer.MAX_VALUE / 10 && num > Integer.MAX_VALUE % 10)) {
// 根据标识,判断是Integer.MAX_VALUE还是Integer.MIN_VALUE
return sign > 0 ? Integer.MAX_VALUE : Integer.MIN_VALUE;
}
// 数值累加
result = result * 10 + num;
// 往前继续遍历
start++;
}
return result * sign;
}
}

运行结果和复杂度分析(2)

运行结果

Runtime: 1 ms, faster than 100.00% of Java online submissions for String to Integer (atoi).

Memory Usage: 36 MB, less than 100.00% of Java online submissions for String to Integer (atoi).

复杂度分析

时间复杂度:O(n),n是有效字符长度

空间复杂度:O(1)

Review

本周分享:How To Ask Questions The Smart Way

对应的简体中文翻译版:提问的智慧

经久不衰的文章,很值得我们再看一遍。

Tip

本周分享从《SQL必知必会》专栏中,学习到的索引知识和SQL调优的Tip:

ps:思维导图中的图片都来源于专栏,以上是学习笔记

Share

本周分享:Spring Leader分享:Spring Framework之再探Core Container 上