49、把字符串转换成整数

(个人水平有限,请见谅!)

题目描述:

将一个字符串转换成一个整数(实现Integer.valueOf(string)的功能,但是string不符合数字要求时返回0),要求不能使用字符串转换整数的库函数。 数值为0或者字符串不是一个合法的数值则返回0。

输入描述:

输入一个字符串,包括数字字母符号,可以为空

输出描述:

如果是合法的数值表达则返回该数字,否则返回0

输入:

+2147483647
    1a33

输出:

2147483647
    0

代码示例:

class Solution {
public:
    int StrToInt(string str) {
        if (str.size() == 0) return 0;
        int flag = 1, pos = 0;
        if (str[0] == '+')
            pos = 1;
        else if (str[0] == '-')
        {
            pos = 1;
            flag = -1;
        }
        
        int count = 0;
        for (int i = pos; i < str.size(); i++)
        {
            if (str[i]>='0' &&str[i]<='9')
            {
                count = 10*count + (str[i]-'0');
            }
            else
                return 0;
        }
        return count*flag;
    }
};

猜你喜欢

转载自blog.csdn.net/qq_30534935/article/details/87898578