How to parse a string to an integer without library functions? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T00:57:16Zhttp://stackoverflow.com/feeds/question/867706http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/867706/how-to-parse-a-string-to-an-integer-without-library-functions1How to parse a string to an integer without library functions?dack2009-05-15T09:18:08Z2009-06-23T17:30:49Z
<p>Hi,</p>
<p>I was recently asked this question in an interview:</p>
<p>"How could you parse a string of the form '12345' into its integer representation 12345 without using any library functions, and regardless of language?"</p>
<p>I thought of two answers, but the interviewer said there was a third. Here are my two solutions:</p>
<p>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.</p>
<p>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.</p>
<p>Can anyone think of what a third solution might be?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/867706/how-to-parse-a-string-to-an-integer-without-library-functions/867729#8677290Answer by Joonas Pulakka for How to parse a string to an integer without library functions?Joonas Pulakka2009-05-15T09:24:40Z2009-05-15T09:24:40Z<p>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 <em>is</em> faster if the upper limit is small, e.g. two or three digits.</p>
http://stackoverflow.com/questions/867706/how-to-parse-a-string-to-an-integer-without-library-functions/867732#8677320Answer by Vicky for How to parse a string to an integer without library functions?Vicky2009-05-15T09:25:30Z2009-05-15T09:25:30Z<p>You could always try a binary search through a massive look up table of string representations! </p>
<p>No-one said anything about efficiency... :-)</p>
http://stackoverflow.com/questions/867706/how-to-parse-a-string-to-an-integer-without-library-functions/867744#8677442Answer by Mendelt for How to parse a string to an integer without library functions?Mendelt2009-05-15T09:32:33Z2009-05-15T09:32:33Z<p>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.</p>
<p>This way you don't have to calculate the place value. By multiplying the accumulator by ten every time you get the same result.</p>
http://stackoverflow.com/questions/867706/how-to-parse-a-string-to-an-integer-without-library-functions/867749#8677494Answer by Artelius for How to parse a string to an integer without library functions?Artelius2009-05-15T09:33:33Z2009-05-15T09:33:33Z<p>I expect this is what the interviewer was after:</p>
<pre><code>number = "12345"
value = 0
for digit in number: //Read most significant digit first
value = value * 10 + valueOf(digit)
</code></pre>
<p>This method uses far less operations than the method you outlined.</p>
http://stackoverflow.com/questions/867706/how-to-parse-a-string-to-an-integer-without-library-functions/1034000#10340001Answer by Han for How to parse a string to an integer without library functions?Han2009-06-23T17:30:49Z2009-06-23T17:30:49Z<p>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:</p>
<p><a href="http://www.programminginterview.com/content/strings" rel="nofollow">http://www.programminginterview.com/content/strings</a></p>
<p>Scroll down (or search) to "Practice Question: Convert an ASCII encoded string into an integer."</p>