请你来实现一个 atoi 函数,使其能将字符串转换成整数。

首先,该函数会根据需要丢弃无用的开头空格字符,直到寻找到第一个非空格的字符为止。

当我们寻找到的第一个非空字符为正或者负号时,则将该符号与之后面尽可能多的连续数字组合起来,作为该整数的正负号;假如第一个非空字符是数字,则直接将其与之后连续的数字字符组合起来,形成整数。

该字符串除了有效的整数部分之后也可能会存在多余的字符,这些字符可以被忽略,它们对于函数不应该造成影响。

注意:假如该字符串中的第一个非空格字符不是一个有效整数字符、字符串为空或字符串仅包含空白字符时,则你的函数不需要进行转换。

在任何情况下,若函数不能进行有效的转换时,请返回 0。

说明:

假设我们的环境只能存储 32 位大小的有符号整数,那么其数值范围为 [−231,  231 − 1]。如果数值超过这个范围,请返回  INT_MAX (231 − 1) 或 INT_MIN (−231) 。

示例 1:

输入: "42"
输出: 42
示例 2:

输入: "   -42"
输出: -42
解释: 第一个非空白字符为 '-', 它是一个负号。
     我们尽可能将负号与后面所有连续出现的数字组合起来,最后得到 -42 。
示例 3:

输入: "4193 with words"
输出: 4193
解释: 转换截止于数字 '3' ,因为它的下一个字符不为数字。
示例 4:

输入: "words and 987"
输出: 0
解释: 第一个非空字符是 'w', 但它不是数字或正、负号。
     因此无法执行有效的转换。
示例 5:

输入: "-91283472332"
输出: -2147483648
解释: 数字 "-91283472332" 超过 32 位有符号整数范围。 
     因此返回 INT_MIN (−231) 。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/string-to-integer-atoi
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

这道题其实不难(才怪)

题解里的大佬答案

class Solution {
public:
    int myAtoi(string str) {
        int res = 0;
        int i = 0;
        int flag = 1;
        // 1. 检查空格
        while (str[i] == ' ') { i++; }
        // 2. 检查符号
        if (str[i] == '-') { flag = -1; }
        if (str[i] == '+' || str[i] == '-') { i++; }
        // 3. 计算数字
        while (i < str.size() && isdigit(str[i])) {
            int r = str[i] - '0';
            // ------ 4. 处理溢出,这是关键步骤 ------
            if (res > INT_MAX / 10 || (res == INT_MAX / 10 && r > 7)) { 
                return flag > 0 ? INT_MAX : INT_MIN;
            }
            // ------------------------------------
            res = res * 10 + r;
            i++;
        }
        return flag > 0 ? res : -res;
    }
};

作者:frank588
链接:https://leetcode-cn.com/problems/string-to-integer-atoi/solution/clean-c-code-by-frank588/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

又找了一个排行榜上最快的答案

class Solution {
public:
    int myAtoi(string str) {

    int i=0;
    int len=str.length();
    bool neg=false;
    while(i<len && str[i]==' ')
    {
        ++i;
    }
    cout<<"i="<<i<<" str="<<str[i];
    if(i<len && (str[i]=='+'||str[i]=='-' ))
    {
        cout<<"1;";
        if (str[i]=='-')
            neg=true;
        ++i;
    }
    int tmp = 0;
    while(i<len&&(str[i]>='0')&&(str[i]<='9'))
    {
        if(!neg)
        {
            if(long(tmp)*10+(str[i]-'0')>INT_MAX)
                return INT_MAX;
        }
        else
        {
            if(long(tmp)*(-10)-(str[i]-'0')<=INT_MIN)
                return INT_MIN;
        }
        tmp=tmp*10+(str[i]-'0'); 
        i++;
    }
    if(neg)
        tmp=-tmp;

    return tmp;
    }
};

第二快,利用输入输出流的(奇淫技巧)奇技淫巧

class Solution {
public:
    int myAtoi(string str) {
        int result=0;
        istringstream is(str);
        is>>result;
        return result;
    }
};

难就是难在英文题目 限制真多看不懂,其次各种边缘控制真的很多,考察思维的严谨性,硬写完了,但是补了一堆补丁才过而且只超过%15

class Solution {
public:
    int myAtoi(string str) {
        long long int num=0;
        int flaga=0;
        int flagb=1;
        int flagc=1;
        int flagd=1;
        for(int i=0;i<str.size();i++){
            if(str[i]==' '&&flaga==0&&flagd){
                continue;
            }flaga=1;
            if(str[i]=='-'&&flagc&&flagd){
                flagb=-1;
                flagc=0;
            }else if(str[i]=='+'&&flagc&&flagd){
                flagb=1;
                flagc=0;
            }
            else if(str[i]>='0'&&str[i]<='9'){
                flagd=0;
                num=num*10+str[i]-'0';
                
                if(abs(num)*flagb>2147483647){
            return 2147483647;
            }else if(abs(num)*flagb<-2147483648){
            return -2147483648;
            }
            }else{
                break;
            }
        }
        num=abs(num)*flagb;
        if(num>2147483647){
            return 2147483647;
        }else if(num<-2147483648){
            return -2147483648;
        }else{
            return num;
        }
    }
};

这是英文题面:、

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: [−231,  231 − 1]. If the numerical value is out of the range of representable values, INT_MAX (231 − 1) or INT_MIN (−231) 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.

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/string-to-integer-atoi
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。