【Leet Code】String to Integer (atoi) ——常考类型题

本文详细解析了atoi函数的实现原理,包括如何处理字符串、转换整数以及边界条件的处理,提供了一个实用的字符串到整数转换的解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

String to Integer (atoi)

  Total Accepted: 15482  Total Submissions: 106043 My 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);
    }
};



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值