mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-09-12 19:01:47 +08:00
批量更新数据
This commit is contained in:
@@ -1,71 +1,105 @@
|
||||
<p>Implement the <code>myAtoi(string s)</code> function, which converts a string to a 32-bit signed integer (similar to C/C++'s <code>atoi</code> function).</p>
|
||||
<p>Implement the <code>myAtoi(string s)</code> function, which converts a string to a 32-bit signed integer.</p>
|
||||
|
||||
<p>The algorithm for <code>myAtoi(string s)</code> is as follows:</p>
|
||||
|
||||
<ol>
|
||||
<li>Read in and ignore any leading whitespace.</li>
|
||||
<li>Check if the next character (if not already at the end of the string) is <code>'-'</code> or <code>'+'</code>. 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.</li>
|
||||
<li>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.</li>
|
||||
<li>Convert these digits into an integer (i.e. <code>"123" -> 123</code>, <code>"0032" -> 32</code>). If no digits were read, then the integer is <code>0</code>. Change the sign as necessary (from step 2).</li>
|
||||
<li>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>.</li>
|
||||
<li>Return the integer as the final result.</li>
|
||||
<li><strong>Whitespace</strong>: Ignore any leading whitespace (<code>" "</code>).</li>
|
||||
<li><strong>Signedness</strong>: Determine the sign by checking if the next character is <code>'-'</code> or <code>'+'</code>, assuming positivity if neither present.</li>
|
||||
<li><strong>Conversion</strong>: 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.</li>
|
||||
<li><strong>Rounding</strong>: 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>.</li>
|
||||
</ol>
|
||||
|
||||
<p><strong>Note:</strong></p>
|
||||
|
||||
<ul>
|
||||
<li>Only the space character <code>' '</code> is considered a whitespace character.</li>
|
||||
<li><strong>Do not ignore</strong> any characters other than the leading whitespace or the rest of the string after the digits.</li>
|
||||
</ul>
|
||||
<p>Return the integer as the final result.</p>
|
||||
|
||||
<p> </p>
|
||||
<p><strong class="example">Example 1:</strong></p>
|
||||
|
||||
<div class="example-block">
|
||||
<p><strong>Input:</strong> <span class="example-io">s = "42"</span></p>
|
||||
|
||||
<p><strong>Output:</strong> <span class="example-io">42</span></p>
|
||||
|
||||
<p><strong>Explanation:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> s = "42"
|
||||
<strong>Output:</strong> 42
|
||||
<strong>Explanation:</strong> The underlined characters are what is read in, the caret is the current reader position.
|
||||
The underlined characters are what is read in and the caret is the current reader position.
|
||||
Step 1: "42" (no characters read because there is no leading whitespace)
|
||||
^
|
||||
Step 2: "42" (no characters read because there is neither a '-' nor '+')
|
||||
^
|
||||
Step 3: "<u>42</u>" ("42" is read in)
|
||||
^
|
||||
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.
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<p><strong class="example">Example 2:</strong></p>
|
||||
|
||||
<div class="example-block">
|
||||
<p><strong>Input:</strong> <span class="example-io">s = " -042"</span></p>
|
||||
|
||||
<p><strong>Output:</strong> <span class="example-io">-42</span></p>
|
||||
|
||||
<p><strong>Explanation:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> s = " -42"
|
||||
<strong>Output:</strong> -42
|
||||
<strong>Explanation:</strong>
|
||||
Step 1: "<u> </u>-42" (leading whitespace is read and ignored)
|
||||
Step 1: "<u> </u>-042" (leading whitespace is read and ignored)
|
||||
^
|
||||
Step 2: " <u>-</u>42" ('-' is read, so the result should be negative)
|
||||
Step 2: " <u>-</u>042" ('-' is read, so the result should be negative)
|
||||
^
|
||||
Step 3: " -<u>42</u>" ("42" is read in)
|
||||
Step 3: " -<u>042</u>" ("042" is read in, leading zeros ignored in the result)
|
||||
^
|
||||
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.
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<p><strong class="example">Example 3:</strong></p>
|
||||
|
||||
<div class="example-block">
|
||||
<p><strong>Input:</strong> <span class="example-io">s = "1337c0d3"</span></p>
|
||||
|
||||
<p><strong>Output:</strong> <span class="example-io">1337</span></p>
|
||||
|
||||
<p><strong>Explanation:</strong></p>
|
||||
|
||||
<pre>
|
||||
<strong>Input:</strong> s = "4193 with words"
|
||||
<strong>Output:</strong> 4193
|
||||
<strong>Explanation:</strong>
|
||||
Step 1: "4193 with words" (no characters read because there is no leading whitespace)
|
||||
Step 1: "1337c0d3" (no characters read because there is no leading whitespace)
|
||||
^
|
||||
Step 2: "4193 with words" (no characters read because there is neither a '-' nor '+')
|
||||
Step 2: "1337c0d3" (no characters read because there is neither a '-' nor '+')
|
||||
^
|
||||
Step 3: "<u>4193</u> with words" ("4193" is read in; reading stops because the next character is a non-digit)
|
||||
Step 3: "<u>1337</u>c0d3" ("1337" is read in; reading stops because the next character is a non-digit)
|
||||
^
|
||||
The parsed integer is 4193.
|
||||
Since 4193 is in the range [-2<sup>31</sup>, 2<sup>31</sup> - 1], the final result is 4193.
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<p><strong class="example">Example 4:</strong></p>
|
||||
|
||||
<div class="example-block">
|
||||
<p><strong>Input:</strong> <span class="example-io">s = "0-1"</span></p>
|
||||
|
||||
<p><strong>Output:</strong> <span class="example-io">0</span></p>
|
||||
|
||||
<p><strong>Explanation:</strong></p>
|
||||
|
||||
<pre>
|
||||
Step 1: "0-1" (no characters read because there is no leading whitespace)
|
||||
^
|
||||
Step 2: "0-1" (no characters read because there is neither a '-' nor '+')
|
||||
^
|
||||
Step 3: "<u>0</u>-1" ("0" is read in; reading stops because the next character is a non-digit)
|
||||
^
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
<p><strong class="example">Example 5:</strong></p>
|
||||
|
||||
<div class="example-block">
|
||||
<p><strong>Input:</strong> <span class="example-io">s = "words and 987"</span></p>
|
||||
|
||||
<p><strong>Output:</strong> <span class="example-io">0</span></p>
|
||||
|
||||
<p><strong>Explanation:</strong></p>
|
||||
|
||||
<p>Reading stops at the first non-digit character 'w'.</p>
|
||||
</div>
|
||||
|
||||
<p> </p>
|
||||
<p><strong>Constraints:</strong></p>
|
||||
|
Reference in New Issue
Block a user