博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
String to Integer (atoi)
阅读量:6311 次
发布时间:2019-06-22

本文共 3315 字,大约阅读时间需要 11 分钟。

Implement atoi to convert a string to an integer.

Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases.

Notes: It is intended for this problem to be specified vaguely (ie, no given input specs). You are responsible to gather all the input requirements up front.

Requirements for atoi:

The function first discards as many whitespace characters as necessary until the first non-whitespace character is found. Then, starting from this character, takes an optional initial plus or minus sign followed by as many numerical digits as possible, and interprets them as a numerical value.

The string can contain additional characters after those that form the integral number, which are ignored and have no effect on the behavior of this function.

If the first sequence of non-whitespace characters in str is not a valid integral number, or if no such sequence exists because either str is empty or it contains only whitespace characters, no conversion is performed.

If no valid conversion could be performed, a zero value is returned. If the correct value is out of the range of representable values, INT_MAX (2147483647) or INT_MIN (-2147483648) is returned.

提交次数最多的一题,总是会溢出。

C++代码如下:

#include
#include
#include
using namespace std;class Solution{public: int atoi(const char *str) { const char *p=str; int arr[100]= {
0}; int dot=0; char flag='+'; int i=0; while(isspace(*p)) p++; //注意符号的判断 if(*p=='-') { flag='-'; p++; } else if(*p=='+') p++; //数字的开始位置 const char *start=p; //注意字符数组结束位置的判断 while(*p!='\0') { //只能有一个.,且一遇到就返回,因为只取整数 if(*p=='.') { if(dot) return 0; dot++; break; } //只有刚开始的地方不是数字才会错误,取完数字之后后面出现字符不会报错,例如134aa,返回134 if(p==start&&!isdigit(*p)) return 0; if(isdigit(*p)) { arr[i]=*p-'0'; p++; i++; } else break; } long long num=1; dot=p-start; while(--dot>0) num*=10; long long sum=0; i=0; while(p!=start) { sum+=arr[i]*num; //在计算每一次都判断sum,不能等计算完成之后判断,不然会溢出 if(flag=='+'&&sum>INT_MAX) return INT_MAX; if(flag=='-'&&-sum

运行结果:

 

需要考虑的问题是:1)要删除空格 2)要判断正负号 3)要判断溢出问题。。不需要考虑是否是浮点数。。。。。

 

方法二:

#include
#include
#include
#include
using namespace std;class Solution {public: int atoi(string str) { if(str.empty()) return 0; int i=0; while(str[i]==' ') i++; int flag=1; if(str[i]=='-') { flag=-1; i++; } else if(str[i]=='+') i++; long long res=0; while(str[i]!='\0'&&isdigit(str[i])) { res=res*10+(int)(str[i]-'0'); if(flag==1&&res>INT_MAX) return INT_MAX; else if(flag==-1&&-res

 

转载地址:http://udhxa.baihongyu.com/

你可能感兴趣的文章
How to recover from root.sh on 11.2 Grid Infrastructure Failed
查看>>
rhel6下安装配置Squid过程
查看>>
《树莓派开发实战(第2版)》——1.1 选择树莓派型号
查看>>
在 Linux 下使用 fdisk 扩展分区容量
查看>>
结合AlphaGo算法和大数据的量化基本面分析法探讨
查看>>
如何在 Ubuntu Linux 16.04 LTS 中使用多个连接加速 apt-get/apt
查看>>
《OpenACC并行编程实战》—— 导读
查看>>
机器学习:用初等数学解读逻辑回归
查看>>
如何在 Ubuntu 中管理和使用逻辑卷管理 LVM
查看>>
Oracle原厂老兵:从负面案例看Hint的最佳使用方式
查看>>
把自己Github上的代码添加Cocoapods支持
查看>>
C语言OJ项目参考(2493)四则运算
查看>>
零基础入门深度学习(二):神经网络和反向传播算法
查看>>
find和xargs
查看>>
数据结构例程—— 交换排序之快速排序
查看>>
WKWebView代理方法解析
查看>>
IOS定位服务的应用
查看>>
[SMS&WAP]实例讲解制作OTA短信来自动配置手机WAP书签[附源码]
查看>>
IOS中图片(UIImage)拉伸技巧
查看>>
【工具】系统性能查看工具 dstat
查看>>