【Leet Code】String to Integer (atoi) ——常考類型題

String to Integer (atoi)

 Total Accepted: 15482 Total Submissions: 106043My Submissions

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.

spoilers alert... click to show requirements for atoi.


字符串的操作,寫程序經常性遇到,string這個類真的非常有用喲,題目要求自行實現atoi的功能:

class Solution 
{
public:
    int atoi(const char *str) 
    {
        while(' ' == *str)
        {
            str++;
        }
        bool isNegative = false;
        if('-' == *str) 
        {
            isNegative = true;
            str++;
        } 
        else if('+' == *str) 
        {
            str++;
        }
        long long ret = 0;
        while(*str) 
        {
            if( isdigit(*str) ) 
            {
                ret = ret * 10 + (*str - '0');
                if(isNegative && (-ret <= INT_MIN))
                {
                    return INT_MIN;
                }
                if(!isNegative && (ret >= INT_MAX))
                {
                    return INT_MAX;
                }
            } 
            else 
            {
                break;
            }
            str++;
        }
        return (isNegative ? -ret : ret);
    }
};



發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章