C++实现atoi函数
时间: 2023-11-03 10:01:38 浏览: 156
atoi函数是C语言的标准函数,用于将字符串转换为整数。在实现过程中,需要进行一些判断和转换操作。首先判断字符串长度是否大于0,然后判断首位字符的符号,再根据正负数对应的溢出条件进行判断。最后,遍历每一位字符,将对应的char类型字符转换为整数,并进行相应的运算和溢出判断。
下面是一个参考的C实现代码:
```
int my_atoi(const char* s) {
if(s == nullptr){
throw "输入异常";
}
bool negative = false;
int result = 0; // 存放中间变量
int len = my_strlen(s);
int limit = -2147483647;
int i = 0;
if(len > 0) {
if (s[0] < '0') {
if ('-' == s[0]) {
negative = true;
limit = -2147483648;
} else if (' ' != s[0]) {
throw "输入异常";
}
if(len == 1){
throw "error";
}
i++;
}
while(i < len) {
int digit = s[i] - '0';
if(digit < 0 || digit > 9) {
throw "输入异常";
} else {
result *= 10;
if(result - digit < limit) {
throw "溢出";
}
result -= digit;
}
}
} else {
cout << "error" << endl;
throw -2147483647;
}
return negative ? result : -result;
}
```
阅读全文