Friday, September 11, 2020

String to Integer (atoi)

Problem: Write a function which first discards as many white space 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.

  

        public int MyAtoi(string str)

        {

            if (string.IsNullOrWhiteSpace(str))

            {

                return 0;

            }  

            int result = 0;

            int startIndex = 0;

            bool isNegativeNumber = false;

            while(startIndex < str.Length && str[startIndex] == ' ')

            {

                ++startIndex;

            }

            if (str[startIndex] == '-')

            {

                isNegativeNumber = true;

                ++startIndex;

            }

            else if (str[startIndex] == '+')

            {

                ++startIndex;

            }

            for (int i = startIndex; i < str.Length && Char.IsDigit(str[i]); ++i)

            {

                // Handling overflow

                if (result > int.MaxValue / 10 || (result == int.MaxValue / 10 && str[i] - '0' > 7))

                {

                    return isNegativeNumber ? int.MinValue : int.MaxValue;

                }

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

            }

            return isNegativeNumber? -result : result;

        }

No comments:

Post a Comment