题解 | #表示数值的字符串#

表示数值的字符串

http://www.nowcoder.com/practice/e69148f8528c4039ad89bb2546fd4ff8

class Solution {
private:
    bool scan_unsighed_integer(const char** str)
    {
        const char* before = *str;
        while(**str!='\0' && **str>='0' && **str<='9')
            ++(*str);
        return *str>before;
    }
    bool scan_integer(const char** str)
    {
        if(**str=='-' || **str=='+')
            ++(*str);
        return scan_unsighed_integer(str);
    }
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param str string字符串 
     * @return bool布尔型
     */
    bool isNumeric(string str) {
        if(str.size()==0) return false;
        // strop space
        int first_non_space_i = 0;
        while(str[first_non_space_i]==' ') first_non_space_i++;
        int last_non_space_i = str.size()-1;
        while(str[last_non_space_i]==' ') last_non_space_i--;
        string striped_str = str.substr(first_non_space_i, last_non_space_i-first_non_space_i+1);
        const char* nstr = striped_str.c_str();
        // a valid integer or float
        bool numeric = scan_integer(&nstr);
        if(*nstr == '.')
        {
            ++nstr;
            numeric = scan_unsighed_integer(&nstr) || numeric; // 一定要注意或运算不能写反。。。
        }
        // valid exp
        if(*nstr=='e' || *nstr=='E')
        {
            ++nstr;
            numeric = numeric && scan_integer(&nstr);
        }
        return *nstr=='\0' && numeric;
    }
};

图片说明

全部评论

相关推荐

球球别再泡了:坏,我单9要了14
点赞 评论 收藏
分享
dongsheng66:如果想进大厂的话,在校经历没必要占这么大篇幅,可以把专业技能单独放一个专栏写,可以加个项目经历
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务