An interview question:

Given two int N (numerator) and D (denominator), return the fraction in string. if the fraction is repeating, then display the repeating part in bracket.

Example: Input: N=1, D=3 output: 0.[3]

Example: Input: N=2, D=5 output: 0.4

My idea:

get a = N/D with double value.

for part after decimal point, get each digit by x 10 in the process, if find repeating, record the index and insert [] finally.

for part before decimal point, get each digit by / 10

Any better ideas?

thanks

link|improve this question

46% accept rate
feedback

1 Answer

I would avoid using a double like the plague. Due to finite precision, it will not give you the correct answer. Stick to integer arithmetic and simulate long division, keeping track of the remainder. After you run out of digits in the numerator (so you are bringing down zeros), also keep a history of remainders and if you see a remainder that is already in the history, that tells you that you have hit a repeating sequence. You can then construct the bracketed output part. (If you hit a zero remainder, of course, that means that the answer is a terminating fraction.)

link|improve this answer
Yep. And the code in this answer to a different related question can help with the long division of the numerator and denominator and remainders. – Alex Dec 14 '11 at 9:13
feedback

Your Answer

 
or
required, but never shown

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