CS-Notes/notes/67. 把字符串转换成整数.md

40 lines
992 B
Java
Raw Permalink Normal View History

2019-11-02 12:07:41 +08:00
# 67. 把字符串转换成整数
2019-11-03 23:57:08 +08:00
## 题目链接
2019-11-02 12:07:41 +08:00
[NowCoder](https://www.nowcoder.com/practice/1277c681251b4372bdef344468e4f26e?tpId=13&tqId=11202&tPage=1&rp=1&ru=/ta/coding-interviews&qru=/ta/coding-interviews/question-ranking&from=cyc_github)
## 题目描述
将一个字符串转换成一个整数字符串不是一个合法的数值则返回 0要求不能使用字符串转换整数的库函数
```html
Iuput:
+2147483647
1a33
Output:
2147483647
0
```
## 解题思路
```java
public int StrToInt(String str) {
2020-05-27 00:44:06 +08:00
if (str == null || str.length() == 0)
return 0;
boolean isNegative = str.charAt(0) == '-';
int ret = 0;
for (int i = 0; i < str.length(); i++) {
char c = str.charAt(i);
if (i == 0 && (c == '+' || c == '-')) /* 符号判定 */
continue;
if (c < '0' || c > '9') /* 非法输入 */
2019-11-02 12:07:41 +08:00
return 0;
2020-05-27 00:44:06 +08:00
ret = ret * 10 + (c - '0');
2019-11-02 12:07:41 +08:00
}
2020-05-27 00:44:06 +08:00
return isNegative ? -ret : ret;
}
2019-11-02 12:07:41 +08:00
```