Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

字符串转换整数 #10

Open
Bulandent opened this issue Jan 12, 2021 · 0 comments
Open

字符串转换整数 #10

Bulandent opened this issue Jan 12, 2021 · 0 comments

Comments

@Bulandent
Copy link
Owner

难度:中等
来源:8. 字符串转换整数

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

首先,该函数会根据需要丢弃无用的开头空格字符,直到寻找到第一个非空格的字符为止。接下来的转化规则如下:

如果第一个非空字符为正或者负号时,则将该符号与之后面尽可能多的连续数字字符组合起来,形成一个有符号整数。
假如第一个非空字符是数字,则直接将其与之后连续的数字字符组合起来,形成一个整数。
该字符串在有效的整数部分之后也可能会存在多余的字符,那么这些字符可以被忽略,它们对函数不应该造成影响。
假如该字符串中的第一个非空格字符不是一个有效整数字符、字符串为空或字符串仅包含空白字符时,则你的函数不需要进行转换,即无法进行有效转换。

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

注意:

本题中的空白字符只包括空格字符 ' ' 。
假设我们的环境只能存储 32 位大小的有符号整数,那么其数值范围为 [−231,  231 − 1]。如果数值超过这个范围,请返回  231 − 1 或 −231 。
 

示例 1:

输入: "42"
输出: 42

示例 2:

输入: "   -42"
输出: -42
解释: 第一个非空白字符为 '-', 它是一个负号。
     我们尽可能将负号与后面所有连续出现的数字组合起来,最后得到 -42 。

示例 3:

输入: "4193 with words"
输出: 4193
解释: 转换截止于数字 '3' ,因为它的下一个字符不为数字。

示例 4:

输入: "words and 987"
输出: 0
解释: 第一个非空字符是 'w', 但它不是数字或正、负号。
     因此无法执行有效的转换。

示例 5:

输入: "-91283472332"
输出: -2147483648
解释: 数字 "-91283472332" 超过 32 位有符号整数范围。 
     因此返回 INT_MIN (−231) 。

思路:

  • 不用正则,不用 parseInt() 函数;
  • 先把字符串头尾去空格,返回一个新的字符串;
  • 如果字符串第一个字符是除 + - 之外的字符,则返回 0;
  • 此时第一个字符一定是 +、- 或者数字之一。从第二个字符开始遍历,如果是空格或者非数字则直接跳出循环,并且记住此时的遍历位置,通过字符串截取就能获得能够转换成整数的字符串;
  • 再把字符串转成数字后与 32 位有符号位整数范围相比,返回对应的数字;

题解:

/**
 * @param {string} s
 * @return {number}
 */
var myAtoi = function(s) {
    s = s.trim()
    const len = s.length
    
    if (s[0] !== '+' && s[0] !== '-' && isNaN(+s[0])) return 0

    let index = 1
    while (index < len) {
        if (s[index] == ' ' || isNaN(+s[index])) {
            break
        }
        index++
    }
    
    s = +s.substr(0, index)
    if (isNaN(s)) return 0
    if (s > 2 ** 31 - 1) return 2 ** 31 -1
    else if (s < (-2) ** 31) return (-2) ** 31
    return s
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant