8. String to Integer (atoi)

Leetcode

https://leetcode.com/problems/string-to-integer-atoi/

題目

Implement the myAtoi(string s) function, which converts a string to a 32-bit signed integer (similar to C/C++'s atoi function).

The algorithm for myAtoi(string s) is as follows:

  1. Read in and ignore any leading whitespace.

  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.

  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.

  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).

  5. If the integer is out of the 32-bit signed integer range [-231, 231 - 1], then clamp the integer so that it remains in the range. Specifically, integers less than -231 should be clamped to -231, and integers greater than 231 - 1 should be clamped to 231 - 1.

  6. Return the integer as the final result.

Note:

  • Only the space character ' ' is considered a whitespace character.

  • Do not ignore any characters other than the leading whitespace or the rest of the string after the digits.

解答

  • 方法一

var myAtoi = function(s) {
    let sign = '+';
    const numberRegExp = /^[0-9]/;

    // 去除空白字串
    s = s.trim();

    // 分隔出正負號
    if (s[0] === '+') s = s.slice(1);
    else if (s[0] === '-') {
      s = s.slice(1);
      sign = '-';
    }

    // 判斷是否為數字開頭的字串
    if(!numberRegExp.test(s)) return 0;

    // 出現不是數字的符號就中斷
    let i=0;
    while(i<s.length && numberRegExp.test(s[i])) {
      i++
    };
    s = s.substr(0, i);

    // string => int
    const value = parseInt(sign+s);
    const MAX_32_BIT_NUMBER = 0x7FFFFFFF;
    if(value > MAX_32_BIT_NUMBER){
        return MAX_32_BIT_NUMBER;
    }
    if(value < ~MAX_32_BIT_NUMBER){
        return ~MAX_32_BIT_NUMBER;
    }
    return value;
};

Runtime: 88 ms, faster than 87.21% of JavaScript online submissions for String to Integer (atoi).

Memory Usage: 40.5 MB, less than 69.10% of JavaScript online submissions for String to Integer (atoi).

測資

let s = "4193 with words";
s = "-91283472332";
s = "+-12";

console.log(myAtoi(s));

參考資料

Last updated

Was this helpful?