LeetCode: String to Integer (atoi)
文章目录
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.
很基础且常见的面试题,更多的是考察能否把所有情况考虑周全,注意到以下几点即可AC
这个字符串是否为空。
这个字符串是否有非法字符(非0-9之间的字符)。
这个数是正数或者是负数的情况(第一个字符是否为+,-)。
是否存在溢出的情况(这个比较难考虑到)。
1 | public int atoi(String str) { |