码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2017-04-16 21:26:29      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:...   require   note   char   int   ecs   height   possible   name   

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); } };




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

标签:...   require   note   char   int   ecs   height   possible   name   

原文地址:http://www.cnblogs.com/brucemengbm/p/6719845.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!