8. String to Integer (atoi)

Description

Implement atoi to convert a string to an integer.

Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases.

Notes: It is intended for this problem to be specified vaguely (ie, no given input specs). You are responsible to gather all the input requirements up front.

Requirements for atoi:

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.

Solution

字符串转整数,兼容提示中的case基本就能AC了,包括空格开头、+-号、非数字字符、整型溢出的case

int myAtoi(string str) {
    int start = 0;
    while (str[start] == ' ' || str[start] == '\t' || str[start] == '\r' || str[start] == '\n') {
        start++;
    }

    int sign = 1;
    if (str[start] == '+') {
        start++;
    } else if (str[start] == '-') {
        start++;
        sign = -1;
    }

    long number = 0;
    for (int i = start; i < str.length(); ++i) {
        char ch = str[i];
        if (!isdigit(ch)) {
            break;
        }
        number = number * 10 + (ch - '0');
        if (number * sign > INT_MAX) {
            return INT_MAX;
        } else if (number * sign < INT_MIN) {
            return INT_MIN;
        }
    }
    return (int)number * sign;
}
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

相关阅读更多精彩内容

友情链接更多精彩内容