题解 | #把字符串转换成整数#

把字符串转换成整数

https://www.nowcoder.com/practice/1277c681251b4372bdef344468e4f26e

#include <string>
class Solution {
public:
    int StrToInt(string str) {
        int ans=0;
        int cnt=0;
        if(str[0]=='+')
            str.erase(0, 1);
        for(int i=str.size()-1;i>=0;i--)
        {
            if((str[i]>='0'&&str[i]<='9')||str[i]=='-')
            {
                if(str[i]=='-')
                    return -ans;
                ans=(str[i]-'0')*pow(10,cnt++)+ans;
            }
            else
               return 0;
        }
        return ans;
    }
};

全部评论

相关推荐

11-26 22:34
已编辑
重庆邮电大学 Java
快手 客户端开发 (n+5)k*16 公积金12
牛客895077908号:佬 什么双非硕啊
点赞 评论 收藏
分享
10-13 17:47
门头沟学院 Java
wulala.god:图一那个善我面过,老板网上找的题库面的
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务