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.
Update (2015-02-10): The signature of the
C++
function had been updated. If you still see your function signature accepts a const char *
argument, please click the reload button to reset your code definition. spoilers alert... click to show requirements for atoi.
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.
이 문 제 는 난이도 가 없 으 니 상황 을 좀 고려 해 야 한다.만약 면접 을 볼 때 어떻게 처리 해 야 할 지 확실 하지 않 은 상황 을 반드시 알려 야 한다. 예 를 들 어:
비 숫자 가 나타 나 지 않 을 까, 빈 칸 이 나타 나 지 않 을 까, 시작 에 빈 칸 이 나타 나 지 않 을 까, 중간 에 빈 칸 이 나타 나 면 어떻게 처리 할 것 인가, 최대 치 와 최소 치 를 초과 하면 어떻게 처리 할 것 인가.
내 가 중간 에 wrong answer 에 부 딪 힌 오류 의 용례:
"+-2"," 010"," +004500 "," - 0012a 42 "," 2147483648 "," 9223372036854775807 ". 비참 한 것 도 안 되 는 셈 이다.
코드 는 다음 과 같 습 니 다:
public class Solution {
public int myAtoi(String str){
int startindex=0,positive=1;
long result=0;
if(str.length()<1)
return 0;
while(str.charAt(startindex)==' ')
startindex++;
if(str.charAt(startindex)=='-')
positive=-1;
if(str.charAt(startindex)=='-'||str.charAt(startindex)=='+')
startindex++;
while(startindex<str.length()){
if((str.charAt(startindex)<'0'||str.charAt(startindex)>'9'))
break;
else if(str.charAt(startindex)>='0'&&str.charAt(startindex)<='9'){
result=result*10+str.charAt(startindex)-'0';
if(result>Integer.MAX_VALUE)
break;
}
startindex++;
}
result*=positive;
return (int)(result>Integer.MAX_VALUE?Integer.MAX_VALUE:result<Integer.MIN_VALUE?Integer.MIN_VALUE:result);
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.