TypechoJoeTheme

IT技术分享

统计

[LeetCode 8] String to Integer (atoi) [C] [Runtime : 15 MS]

2017-06-01
/
0 评论
/
729 阅读
/
正在检测是否收录...
06/01

1. Description

Implement atoi to convert a string to an integer.

2. Explanation

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. If the correct value is out of the range of representable values, INT_MAX (2147483647) or INT_MIN (-2147483648) is returned.

3. Code

int myAtoi(char * str)
{
    long long mResult = 0;

    while (isspace(*str++));

    int mSign = *--str == '-' ? -1 : *str == '+' ? 1 : 0;

    for (str = mSign ? ++str : str; isdigit(*str) && mResult <= INT_MAX; str ++)
    {
         mResult = mResult * 10 + (*str - 48);
    }
    return mResult > INT_MAX ? mSign == -1 ? INT_MIN : INT_MAX : mSign == -1 ? -mResult : mResult;
}
#include<stdio.h>
#include<limits.h>

int myAtoi(char * str)
{
    long long mResult = 0;

    while (isspace(*str++));

    int mSign = *--str == '-' ? -1 : *str == '+' ? 1 : 0;

    for (str = mSign ? ++str : str; isdigit(*str) && mResult <= INT_MAX; str ++)
    {
         mResult = mResult * 10 + (*str - 48);
    }
    return mResult > INT_MAX ? mSign == -1 ? INT_MIN : INT_MAX : mSign == -1 ? -mResult : mResult;
}

int main()
{
    char input[] = { '-','2','1','4','7','4','8','3','6','4','7','\0' };
    printf("%ld\n", myAtoi(input));
    system("pause");
    return 0;
}
  1. Submission Details

  1. Runtime Distribution

Digital
朗读
赞 · 0
版权属于:

IT技术分享

本文链接:

https://idunso.com/archives/235/(转载时请注明本文出处及文章链接)