vote up 1 vote down star
2

Hi,

I was recently asked this question in an interview:

"How could you parse a string of the form '12345' into its integer representation 12345 without using any library functions, and regardless of language?"

I thought of two answers, but the interviewer said there was a third. Here are my two solutions:

Solution 1: Keep a dictionary which maps '1' => 1, '2' => 2, etc. Then parse the string one character at a time, look up the character in your dictionary, and multiply by place value. Sum the results.

Solution 2: Parse the string one character at a time and subtract '0' from each character. This will give you '1' - '0' = 0x1, '2' - '0' = 0x2, etc. Again, multiply by place value and sum the results.

Can anyone think of what a third solution might be?

Thanks.

flag

5 Answers

vote up 4 vote down check

I expect this is what the interviewer was after:

number = "12345"
value = 0
for digit in number:                    //Read most significant digit first
    value = value * 10 + valueOf(digit)

This method uses far less operations than the method you outlined.

link|flag
Isn't that solution number 2 (just using ValueOf()) – tanascius May 15 at 9:35
Isn't that the second answer mentioned in the question? – Naveen May 15 at 9:36
What is "valueOf"? A library function? – Neil Butterworth May 15 at 9:38
Yeah, that's probably right. Thanks! – dack May 15 at 9:41
@tanascius: No. This method totally avoids the "multiply by place value" business. @Naveen: No. (see above) @Neil: no, it's a language-dependent way to go from "1" to 1 etc., In C it could be digit-'0'; in some languages something like a map would be more convenient. @dan, you're welcome. – Artelius May 15 at 10:04
show 1 more comment
vote up 1 vote down

Artelius's answer is extremely concise and language independent, but for those looking for a more detailed answer with explanation as well as a C and Java implementation can check out this page:

http://www.programminginterview.com/content/strings

Scroll down (or search) to "Practice Question: Convert an ASCII encoded string into an integer."

link|flag
vote up 2 vote down

Parse the string in oposite order, use one of the two methods for parsing the single digits, multiply the accumulator by 10 then add the digit to the accumulator.

This way you don't have to calculate the place value. By multiplying the accumulator by ten every time you get the same result.

link|flag
vote up 0 vote down

You could always try a binary search through a massive look up table of string representations!

No-one said anything about efficiency... :-)

link|flag
vote up 0 vote down

Keep a dictionary which maps all strings to their integer counterparts, up to some limit? Doesn't maybe make much sense, except that this probably is faster if the upper limit is small, e.g. two or three digits.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.