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实现

  • 相关阅读:
    Redis数据类型之字符串String
    Redis数据类型之列表List
    hdu 2066 一个人的旅行
    CDOJ 1221 Ancient Go
    如何避免javascript中的冲突
    利用锚点制作简单索引效果
    函数中的私有变量和特权方法
    Linux中常用命令cat
    java -jar参数运行方式设置classpath
    Linux中的数据重定向
  • 原文地址:https://www.cnblogs.com/yongh/p/10061595.html
Copyright © 2011-2022 走看看