|
2 | 2 |
|
3 | 3 | Medium |
4 | 4 |
|
5 | | -Implement the `myAtoi(string s)` function, which converts a string to a 32-bit signed integer (similar to C/C++'s `atoi` function). |
| 5 | +Implement the `myAtoi(string s)` function, which converts a string to a 32-bit signed integer. |
6 | 6 |
|
7 | 7 | The algorithm for `myAtoi(string s)` is as follows: |
8 | 8 |
|
9 | | -1. Read in and ignore any leading whitespace. |
10 | | -2. Check if the next character (if not already at the end of the string) is `'-'` or `'+'`. Read this character in if it is either. This determines if the final result is negative or positive respectively. Assume the result is positive if neither is present. |
11 | | -3. Read in next the characters until the next non-digit character or the end of the input is reached. The rest of the string is ignored. |
12 | | -4. Convert these digits into an integer (i.e. `"123" -> 123`, `"0032" -> 32`). If no digits were read, then the integer is `0`. Change the sign as necessary (from step 2). |
13 | | -5. If the integer is out of the 32-bit signed integer range <code>[-2<sup>31</sup>, 2<sup>31</sup> - 1]</code>, then clamp the integer so that it remains in the range. Specifically, integers less than <code>-2<sup>31</sup></code> should be clamped to <code>-2<sup>31</sup></code>, and integers greater than <code>2<sup>31</sup> - 1</code> should be clamped to <code>2<sup>31</sup> - 1</code>. |
14 | | -6. Return the integer as the final result. |
| 9 | +1. **Whitespace**: Ignore any leading whitespace (`" "`). |
| 10 | +2. **Signedness**: Determine the sign by checking if the next character is `'-'` or `'+'`, assuming positivity if neither present. |
| 11 | +3. **Conversion**: Read the integer by skipping leading zeros until a non-digit character is encountered or the end of the string is reached. If no digits were read, then the result is 0. |
| 12 | +4. **Rounding**: If the integer is out of the 32-bit signed integer range <code>[-2<sup>31</sup>, 2<sup>31</sup> - 1]</code>, then round the integer to remain in the range. Specifically, integers less than <code>-2<sup>31</sup></code> should be rounded to <code>-2<sup>31</sup></code>, and integers greater than <code>2<sup>31</sup> - 1</code> should be rounded to <code>2<sup>31</sup> - 1</code>. |
15 | 13 |
|
16 | | -**Note:** |
17 | | - |
18 | | -* Only the space character `' '` is considered a whitespace character. |
19 | | -* **Do not ignore** any characters other than the leading whitespace or the rest of the string after the digits. |
| 14 | +Return the integer as the final result. |
20 | 15 |
|
21 | 16 | **Example 1:** |
22 | 17 |
|
23 | 18 | **Input:** s = "42" |
24 | 19 |
|
25 | 20 | **Output:** 42 |
26 | 21 |
|
27 | | -**Explanation:** The underlined characters are what is read in, the caret is the current reader position. |
| 22 | +**Explanation:** |
28 | 23 |
|
| 24 | + The underlined characters are what is read in and the caret is the current reader position. |
29 | 25 | Step 1: "42" (no characters read because there is no leading whitespace) |
30 | | - ^ |
| 26 | + ^ |
31 | 27 | Step 2: "42" (no characters read because there is neither a '-' nor '+') |
32 | 28 | ^ |
33 | 29 | Step 3: "42" ("42" is read in) |
34 | | - ^ |
35 | | - |
36 | | -The parsed integer is 42. Since 42 is in the range [-2<sup>31</sup>, 2<sup>31</sup> - 1], the final result is 42. |
| 30 | + ^ |
37 | 31 |
|
38 | 32 | **Example 2:** |
39 | 33 |
|
40 | | -**Input:** s = " -42" |
| 34 | +**Input:** s = " -042" |
41 | 35 |
|
42 | | -**Output:** -42 |
| 36 | +**Output:** \-42 |
43 | 37 |
|
44 | 38 | **Explanation:** |
45 | 39 |
|
46 | | - Step 1: " -42" (leading whitespace is read and ignored) |
47 | | - ^ |
48 | | - Step 2: " -42" ('-' is read, so the result should be negative) |
49 | | - ^ |
50 | | - Step 3: " -42" ("42" is read in) |
51 | | - ^ |
52 | | - The parsed integer is -42. |
53 | | - |
54 | | -Since -42 is in the range [-2<sup>31</sup>, 2<sup>31</sup> - 1], the final result is -42. |
| 40 | + Step 1: "___-042" (leading whitespace is read and ignored) |
| 41 | + ^ |
| 42 | + Step 2: " -042" ('-' is read, so the result should be negative) |
| 43 | + ^ |
| 44 | + Step 3: " -042" ("042" is read in, leading zeros ignored in the result) |
| 45 | + ^ |
55 | 46 |
|
56 | 47 | **Example 3:** |
57 | 48 |
|
58 | | -**Input:** s = "4193 with words" |
| 49 | +**Input:** s = "1337c0d3" |
59 | 50 |
|
60 | | -**Output:** 4193 |
| 51 | +**Output:** 1337 |
61 | 52 |
|
62 | 53 | **Explanation:** |
63 | 54 |
|
64 | | - Step 1: "4193 with words" (no characters read because there is no leading whitespace) |
| 55 | + Step 1: "1337c0d3" (no characters read because there is no leading whitespace) |
65 | 56 | ^ |
66 | | - Step 2: "4193 with words" (no characters read because there is neither a '-' nor '+') |
| 57 | + Step 2: "1337c0d3" (no characters read because there is neither a '-' nor '+') |
67 | 58 | ^ |
68 | | - Step 3: "4193 with words" ("4193" is read in; reading stops because the next character is a non-digit) |
| 59 | + Step 3: "1337c0d3" ("1337" is read in; reading stops because the next character is a non-digit) |
69 | 60 | ^ |
70 | | - The parsed integer is 4193. |
71 | | - |
72 | | -Since 4193 is in the range [-2<sup>31</sup>, 2<sup>31</sup> - 1], the final result is 4193. |
73 | 61 |
|
74 | 62 | **Example 4:** |
75 | 63 |
|
76 | | -**Input:** s = "words and 987" |
| 64 | +**Input:** s = "0-1" |
77 | 65 |
|
78 | 66 | **Output:** 0 |
79 | 67 |
|
80 | 68 | **Explanation:** |
81 | 69 |
|
82 | | - Step 1: "words and 987" (no characters read because there is no leading whitespace) |
| 70 | + Step 1: "0-1" (no characters read because there is no leading whitespace) |
83 | 71 | ^ |
84 | | - Step 2: "words and 987" (no characters read because there is neither a '-' nor '+') |
| 72 | + Step 2: "0-1" (no characters read because there is neither a '-' nor '+') |
85 | 73 | ^ |
86 | | - Step 3: "words and 987" (reading stops immediately because there is a non-digit 'w') |
87 | | - ^ |
88 | | - The parsed integer is 0 because no digits were read. |
89 | | - |
90 | | -Since 0 is in the range [-2<sup>31</sup>, 2<sup>31</sup> - 1], the final result is 0. |
| 74 | + Step 3: "0-1" ("0" is read in; reading stops because the next character is a non-digit) |
| 75 | + ^ |
91 | 76 |
|
92 | 77 | **Example 5:** |
93 | 78 |
|
94 | | -**Input:** s = "-91283472332" |
| 79 | +**Input:** s = "words and 987" |
95 | 80 |
|
96 | | -**Output:** -2147483648 |
| 81 | +**Output:** 0 |
97 | 82 |
|
98 | 83 | **Explanation:** |
99 | 84 |
|
100 | | - Step 1: "-91283472332" (no characters read because there is no leading whitespace) |
101 | | - ^ |
102 | | - Step 2: "-91283472332" ('-' is read, so the result should be negative) |
103 | | - ^ |
104 | | - Step 3: "-91283472332" ("91283472332" is read in) |
105 | | - ^ |
106 | | - The parsed integer is -91283472332. |
107 | | - |
108 | | -Since -91283472332 is less than the lower bound of the range [-2<sup>31</sup>, 2<sup>31</sup> - 1], the final result is clamped to -2<sup>31</sup> = -2147483648. |
109 | | - |
110 | | -**Constraints:** |
111 | | - |
112 | | -* `0 <= s.length <= 200` |
113 | | -* `s` consists of English letters (lower-case and upper-case), digits (`0-9`), `' '`, `'+'`, `'-'`, and `'.'`. |
| 85 | +Reading stops at the first non-digit character 'w'. |
114 | 86 |
|
115 | 87 | To solve the String to Integer (atoi) problem in Java using a `Solution` class, we'll follow these steps: |
116 | 88 |
|
@@ -181,4 +153,9 @@ public class Solution { |
181 | 153 | } |
182 | 154 | ``` |
183 | 155 |
|
184 | | -This implementation provides a solution to the String to Integer (atoi) problem in Java. |
| 156 | +This implementation provides a solution to the String to Integer (atoi) problem in Java. |
| 157 | + |
| 158 | +**Constraints:** |
| 159 | + |
| 160 | +* `0 <= s.length <= 200` |
| 161 | +* `s` consists of English letters (lower-case and upper-case), digits (`0-9`), `' '`, `'+'`, `'-'`, and `'.'`. |
0 commit comments