zoukankan      html  css  js  c++  java
  • 【LeetCode】8. String to Integer (atoi)

    Difficulty: Medium

     More:【目录】LeetCode Java实现

    Description

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

    Implement atoi which converts a string to an integer.

    The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus sign followed by as many numerical digits as possible, and interprets them as a numerical value.

    The string can contain additional characters after those that form the integral number, which are ignored and have no effect on the behavior of this function.

    If the first sequence of non-whitespace characters in str is not a valid integral number, or if no such sequence exists because either str is empty or it contains only whitespace characters, no conversion is performed.

    If no valid conversion could be performed, a zero value is returned.

    Note:

    • Only the space character ' ' is considered as whitespace character.
    • Assume we are dealing with an environment which could only store integers within the 32-bit signed integer range: [−2^31,  2^31 − 1]. If the numerical value is out of the range of representable values, INT_MAX (2^31 − 1) or INT_MIN (−2^31) is returned.

    Example 1:

    Input: "42"
    Output: 42
    

    Example 2:

    Input: "   -42"
    Output: -42
    Explanation: The first non-whitespace character is '-', which is the minus sign.
                 Then take as many numerical digits as possible, which gets 42.
    

    Example 3:

    Input: "4193 with words"
    Output: 4193
    Explanation: Conversion stops at digit '3' as the next character is not a numerical digit.
    

    Example 4:

    Input: "words and 987"
    Output: 0
    Explanation: The first non-whitespace character is 'w', which is not a numerical 
                 digit or a +/- sign. Therefore no valid conversion could be performed.

    Example 5:

    Input: "-91283472332"
    Output: -2147483648
    Explanation: The number "-91283472332" is out of the range of a 32-bit signed integer.
                 Thefore INT_MIN (−231) is returned.

    Intuition

    Scan from index=0 to the end of the String to get the number. (num=num*10+digit)

    The situations that are going to overflow ( range:[–2147483648, 2147483647  ] ):

      1) if current num>214748364, it's going to overflow 

      2) if current num=214748364, and digit>=8. it's going to overflow.

      3) if current num is minus, then it's similar to above;

    Solution

        private static final int maxDiv10 =Integer.MAX_VALUE/10;
        public static int myAtoi(String str) {
            if(str==null || str.length()==0)
                return 0;
            int i=0;
            int n=str.length();
            while(i<n && str.charAt(i)==' ')
                i++;
            boolean isNegative=false;
            if(i<n && str.charAt(i)=='+'){
                i++;
            }else if(i<n && str.charAt(i)=='-'){
                isNegative=true;
                i++;
            }
            int num=0;
            while(i<n && Character.isDigit(str.charAt(i))){
                int digit = Character.getNumericValue(str.charAt(i));
                if(num>maxDiv10 || (num==maxDiv10 && digit>=8) )
                    return isNegative? Integer.MIN_VALUE : Integer.MAX_VALUE;
                num*=10;
                num+=digit;
                i++;
            }
            if(isNegative)
                return -num;
            return num;
        }
    

      

    Complexity

    Time complexity : O(n)

    Space complexity :  O(1)

    What I've learned

    1. It's important to learn how to deal with overflow;

    2. Have a commond of:

      Character.isDigit(c)

      Character.getNumericValue(c)

      Integer.MAX_VALUE

      Integer.MIN_VALUE

     More:【目录】LeetCode Java实现

  • 相关阅读:
    java实现远程开机
    windows系统设备管理器显示全部硬件
    使用pl/sql在oracle中新建表和对应序列
    mysql,oracle,sql server中的默认事务隔离级别查看,更改
    没有外网情况下linux安装mysql
    解决IntelliJ IDEA 创建Maven项目速度慢问题 DarchetypeCatalog
    vmware中linux虚拟机使用NAT模式不能连接外网解决
    idea中新建的web项目不能新建servlet
    SSH开源框架的优缺点
    配置JDK环境变量,与各步骤的意义
  • 原文地址:https://www.cnblogs.com/yongh/p/10061595.html
Copyright © 2011-2022 走看看