How to parse a string to an integer without library functions? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T00:57:16Z http://stackoverflow.com/feeds/question/867706 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/867706/how-to-parse-a-string-to-an-integer-without-library-functions 1 How to parse a string to an integer without library functions? dack 2009-05-15T09:18:08Z 2009-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#867729 0 Answer by Joonas Pulakka for How to parse a string to an integer without library functions? Joonas Pulakka 2009-05-15T09:24:40Z 2009-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#867732 0 Answer by Vicky for How to parse a string to an integer without library functions? Vicky 2009-05-15T09:25:30Z 2009-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#867744 2 Answer by Mendelt for How to parse a string to an integer without library functions? Mendelt 2009-05-15T09:32:33Z 2009-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#867749 4 Answer by Artelius for How to parse a string to an integer without library functions? Artelius 2009-05-15T09:33:33Z 2009-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#1034000 1 Answer by Han for How to parse a string to an integer without library functions? Han 2009-06-23T17:30:49Z 2009-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>