当前位置:网站首页>LeetCode 8. 字符串转换整数 (atoi)
LeetCode 8. 字符串转换整数 (atoi)
2022-07-04 19:13:00 【_刘小雨】
请你来实现一个 myAtoi(string s) 函数,使其能将字符串转换成一个 32 位有符号整数(类似 C/C++ 中的 atoi 函数)。
函数 myAtoi(string s) 的算法如下:
读入字符串并丢弃无用的前导空格
检查下一个字符(假设还未到字符末尾)为正还是负号,读取该字符(如果有)。 确定最终结果是负数还是正数。 如果两者都不存在,则假定结果为正。
读入下一个字符,直到到达下一个非数字字符或到达输入的结尾。字符串的其余部分将被忽略。
将前面步骤读入的这些数字转换为整数(即,“123” -> 123, “0032” -> 32)。如果没有读入数字,则整数为 0 。必要时更改符号(从步骤 2 开始)。
如果整数数超过 32 位有符号整数范围 [−231, 231 − 1] ,需要截断这个整数,使其保持在这个范围内。具体来说,小于 −231 的整数应该被固定为 −231 ,大于 231 − 1 的整数应该被固定为 231 − 1 。
返回整数作为最终结果。
注意:
本题中的空白字符只包括空格字符 ’ ’ 。
除前导空格或数字后的其余字符串外,请勿忽略 任何其他字符。
示例 1:
输入:s = “42”
输出:42
解释:加粗的字符串为已经读入的字符,插入符号是当前读取的字符。
第 1 步:“42”(当前没有读入字符,因为没有前导空格)
^
第 2 步:“42”(当前没有读入字符,因为这里不存在 ‘-’ 或者 ‘+’)
^
第 3 步:“42”(读入 “42”)
^
解析得到整数 42 。
由于 “42” 在范围 [-231, 231 - 1] 内,最终结果为 42 。
示例 2:
输入:s = " -42"
输出:-42
解释:
第 1 步:" -42"(读入前导空格,但忽视掉)
^
第 2 步:" -42"(读入 ‘-’ 字符,所以结果应该是负数)
^
第 3 步:" -42"(读入 “42”)
^
解析得到整数 -42 。
由于 “-42” 在范围 [-231, 231 - 1] 内,最终结果为 -42 。
示例 3:
输入:s = “4193 with words”
输出:4193
解释:
第 1 步:“4193 with words”(当前没有读入字符,因为没有前导空格)
^
第 2 步:“4193 with words”(当前没有读入字符,因为这里不存在 ‘-’ 或者 ‘+’)
^
第 3 步:“4193 with words”(读入 “4193”;由于下一个字符不是一个数字,所以读入停止)
^
解析得到整数 4193 。
由于 “4193” 在范围 [-231, 231 - 1] 内,最终结果为 4193 。
Code:
class Solution {
public:
int myAtoi(string s) {
int re = 0;
int k = 0;
while(k < s.size() && s[k] == ' ') k ++;
if( k == s.size()) return 0;
int flag = 1;
if(s[k] == '-') flag = -1, k ++;
if(s[k] == '+')
{
if (flag == -1) return 0;
else
k ++;
}
while(k < s.size() && s[k] >='0' && s[k] <= '9')
{
int x = s[k] - '0';
if(flag > 0 && re > (INT_MAX - x)/ 10) return INT_MAX;
if(flag < 0 && -re < (INT_MIN + x)/ 10) return INT_MIN;
if(-re * 10 - x == INT_MIN) return INT_MIN; // 这句是特殊判断的, INT_MN 和INT_MAX的绝对值不一样
re = re * 10 + x;
k++;
}
re *= flag;
return re;
}
};
边栏推荐
- Lingyun going to sea | 10 jump &huawei cloud: jointly help Africa's inclusive financial services
- Every time I look at the interface documents of my colleagues, I get confused and have a lot of problems...
- What if the computer page cannot be full screen? The solution of win11 page cannot be full screen
- 实践示例理解js强缓存协商缓存
- What if the brightness of win11 is locked? Solution to win11 brightness locking
- 凌云出海记 | 沐融科技&华为云:打造非洲金融SaaS解决方案样板
- Hash quiz game system development how to develop hash quiz game system development (multiple cases)
- Alibaba testers use UI automated testing to achieve element positioning
- [Beijing Xunwei] i.mx6ull development board porting Debian file system
- 同事的接口文档我每次看着就头大,毛病多多。。。
猜你喜欢
Practical examples of node strong cache and negotiation cache
ICML 2022 | meta proposes a robust multi-objective Bayesian optimization method to effectively deal with input noise
AP8022开关电源小家电ACDC芯片离线式开关电源IC
How does the computer save web pages to the desktop for use
实践示例理解js强缓存协商缓存
[ismb2022 tutorial] the picture shows the precision medicine of learning. Marinka zitnik, Harvard University, keynote speaker, with 87 ppt
See how Tencent does interface automation testing
#夏日挑战赛#带你玩转HarmonyOS多端钢琴演奏
Win11怎么搜索无线显示器?Win11查找无线显示器设备的方法
What is involution?
随机推荐
Flet tutorial 05 outlinedbutton basic introduction (tutorial includes source code)
2022 version of stronger jsonpath compatibility and performance test (snack3, fastjson2, jayway.jsonpath)
九齐单片机NY8B062D单按键控制4种LED状态
精选综述 | 用于白内障分级/分类的机器学习技术
《动手学深度学习》(三) -- 卷积神经网络 CNN
栈:如何实现有效括号的判断?
为什么最大速度是光速
Oracle database, numbers Force 2 decimal places to display-Alibaba Cloud
What financial products can you buy with a deposit of 100000 yuan?
Jiuqi ny8b062d MCU specification /datasheet
LeetCode 871. 最低加油次数
SSRS筛选器的IN运算(即包含于)用法
托管式服务网络:云原生时代的应用体系架构进化
Length of the longest integrable subarray
凌云出海记 | 沐融科技&华为云:打造非洲金融SaaS解决方案样板
哈希(Hash)竞猜游戏系统开发功能分析及源码
Win11怎么搜索无线显示器?Win11查找无线显示器设备的方法
See how Tencent does interface automation testing
word中插入圖片後,圖片上方有一空行,且删除後布局變亂
PermissionError: [Errno 13] Permission denied: ‘data.csv‘