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
[restabs alignment="osc-tabs-right" responsive="true" icon="true" text="More" seltabcolor="#fdfdfd" seltabheadcolor="#000" tabheadcolor="blue"]
[restab title="C S= O(1)" active="active"]
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; }
[/restab]
[restab title="C (TEST)"]
#include#include 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; }
[/restab]
[/restabs]
Comments | NOTHING