返回介绍

lcof / 面试题67. 把字符串转换成整数 / README

发布于 2024-06-17 01:04:42 字数 6006 浏览 0 评论 0 收藏 0

面试题 67. 把字符串转换成整数

题目描述

写一个函数 StrToInt,实现把字符串转换成整数这个功能。不能使用 atoi 或者其他类似的库函数。

 

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

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

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

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

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

说明:

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

 

注意:本题与主站 8 题相同:https://leetcode.cn/problems/string-to-integer-atoi/

解法

方法一

class Solution:
  def strToInt(self, str: str) -> int:
    if not str:
      return 0
    n = len(str)
    if n == 0:
      return 0
    i = 0
    while str[i] == ' ':
      i += 1
      # 仅包含空格
      if i == n:
        return 0
    sign = -1 if str[i] == '-' else 1
    if str[i] in ['-', '+']:
      i += 1
    res, flag = 0, (2**31 - 1) // 10
    while i < n:
      # 非数字,跳出循环体
      if not str[i].isdigit():
        break
      c = int(str[i])
      # 溢出判断
      if res > flag or (res == flag and c > 7):
        return 2**31 - 1 if sign > 0 else -(2**31)
      res = res * 10 + c
      i += 1
    return sign * res
class Solution {
  public int strToInt(String str) {
    if (str == null) return 0;
    int n = str.length();
    if (n == 0) return 0;
    int i = 0;
    while (str.charAt(i) == ' ') {
      // 仅包含空格
      if (++i == n) return 0;
    }
    int sign = 1;
    if (str.charAt(i) == '-') sign = -1;
    if (str.charAt(i) == '-' || str.charAt(i) == '+') ++i;
    int res = 0, flag = Integer.MAX_VALUE / 10;
    for (; i < n; ++i) {
      // 非数字,跳出循环体
      if (str.charAt(i) < '0' || str.charAt(i) > '9') break;
      // 溢出判断
      if (res > flag || (res == flag) && str.charAt(i) > '7')
        return sign > 0 ? Integer.MAX_VALUE : Integer.MIN_VALUE;
      res = res * 10 + (str.charAt(i) - '0');
    }
    return sign * res;
  }
}
func strToInt(str string) int {
  n, sign, i, x := len(str), 1, 0, 0

  // 去除开头的空格
  for i < n && str[i] == ' ' {
    i++
  }

  // 如果只有空格
  if i == n {
    return 0
  }

  // 负数
  if str[i] == '-' {
    sign = -1
  }

  // 跳过符号
  if str[i] == '-' || str[i] == '+' {
    i++
  }

  // 如果符号后紧跟的不是数字
  if i == n || str[i] < '0' || str[i] > '9' {
    return 0
  }

  // golang 在 64 位平台下 int 就是 int64,所以不用对 x 进行特殊处理
  for ; i < n && str[i] >= '0' && str[i] <= '9'; i++ {
    x = x*10 + int(str[i]) - '0'
    if x > math.MaxInt32 {
      break
    }
  }

  if x > math.MaxInt32 {
    if sign == 1 {
      return math.MaxInt32
    }
    return math.MinInt32
  }
  return sign * x
}
/**
 * @param {string} str
 * @return {number}
 */
var strToInt = function (str) {
  let res = '';
  let l = 1;
  for (let i = 0; i < str.length; i++) {
    if (l && str[i] === ' ') continue;
    if (l && (str[i] === '+' || str[i] === '-')) {
      l = 0;
      res += str[i];
      continue;
    }
    if (str[i].match(/[0-9]/)) {
      l = 0;
      res += str[i];
    } else break;
  }
  res = isNaN(+res) ? 0 : +res;
  if (res > 2147483647) return 2147483647;
  if (res < -2147483648) return -2147483648;
  return res;
};
public class Solution {
  public int StrToInt(string str) {
    if (string.IsNullOrWhiteSpace(str))
    {
      return 0;
    }

    str = str.Trim();
    int currentIndex = 0;
    bool minus = false;
    if (str[currentIndex] == '+')
    {
      minus = false;
      currentIndex++;
    }
    else if (str[currentIndex] == '-')
    {
      minus = true;
      currentIndex++;
    }

    long result = 0;
    for (; currentIndex < str.Length; currentIndex++)
    {
      if (!char.IsDigit(str[currentIndex]))
      {
        break;
      }

      if (minus && result - 1 > int.MaxValue)
      {
        return int.MinValue;
      }
      else if (!minus && result > int.MaxValue)
      {
        return int.MaxValue;
      }

      result = result * 10 + (str[currentIndex] - '0');
    }

    if (minus && result - 1 > int.MaxValue)
    {
      return int.MinValue;
    }
    else if (!minus && result > int.MaxValue)
    {
      return int.MaxValue;
    }
    else
    {
      return (minus ? -1 : 1) * (int)result;
    }

  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文