Test case :

35000

-> a normalized scientific notation of the number would be 3.5 * 10E4

-> the engineering notation would be 35 * 10E3

A simple algorithm that does this would keep dividing the number by 10 until we get the notations required. However this would mean the algorithm would be O(number of zeros). Can we do better?

link|improve this question

74% accept rate
If it's a double you can extract the mantissa directly to get a very good first approximation, though this would break at the extreme ends where doubles are no longer stored normalized. – romkyns Jan 29 at 17:11
Assuming a fast implementation of log, int exp = floor(log(x)) and expEng = 3 (exp / 3) – Adam Liss Jan 29 at 17:34
@ Adam, The question is how efficient is the log? – kunj2aan Jan 29 at 17:49
feedback

1 Answer

The classic paper on the subject of printing human-friendly representations of floating point numbers can be read here. It's much too complex to be discussed as code in an answer here.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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