What's the best way to write
int NumDigits(int n);
in C++ which would return the number of digits in the decimal representation of the input. For example 11->2, 999->3, -1->2 etc etc.
|
1
|
What's the best way to write
in C++ which would return the number of digits in the decimal representation of the input. For example 11->2, 999->3, -1->2 etc etc.
|
||||||||||||||||
|
|
|
Clean and fast, and independent of
|
||||||||||||||
|
|
|
Here's a simpler version of Alink's answer .
|
||
|
|
|
Another implementation using STL binary search on a lookup table, which seems not bad (not too long and still faster than division methods). It also seem easy and efficient to adapt for type much bigger than int: will be faster than O(digits) methods and just needs multiplication (no division or log function for this hypothetical type). There is a requirement of a MAXVALUE, though. Unless you fill the table dynamically. [edit: move the struct into the function]
|
|||
|
|
|
|
An optimization of the previous division methods. (BTW they all test if n!=0, but most of the time n>=10 seems enough and spare one division which was more expensive). I simply use multiplication and it seems to make it much faster (almost 4x here), at least on the 1..100000000 range. I am a bit surprised by such difference, so maybe this triggered some special compiler optimization or I missed something. The initial change was simple, but unfortunately I needed to take care of a new overflow problem. It makes it less nice, but on my test case, the 10^6 trick more than compensates the cost of the added check. Obviously it depends on input distribution and you can also tweak this 10^6 value. PS: Of course, this kind of optimization is just for fun :)
|
||
|
|
|
|
Some very over-complicated solutions have been proposed, including the accepted one. Consider:
Note that it works for for INT_MIN + 1 ... INT_MAX, because abs(INT_MIN) == INT_MAX + 1 == INT_MIN (due to wrap-around), which in-turn is invalid input to log10(). It is possible to add code for that one case. |
|||
|
|
|
|
If you're using a version of C++ which include C99 maths functions (C++0x and some earlier compilers)
Whether ilogb is faster than a loop will depend on the architecture, but it's useful enough for this kind of problem to have been added to the standard. |
|||
|
|
|
My version of loop (works with 0, negative and positive values):
|
||||
|
|
|
To extend Arteluis' answer, you could use templates to generate the comparisons:
|
||||||||||||||
|
|
|
|
||||
|
|
|
The fastest way is probably a binary search...
In this case it's about 3 comparisons regardless of input, which I suspect is much faster than a division loop or using doubles. |
||||||||||
|
|
|
Edit: Corrected edge case behavior for -2^31 (etc.) |
||||||||||
|
|
|
One way is to (may not be most efficient) convert it to a string and find the length of the string. Like:
|
||||||||||||||||
|
|
|
|
||||||||||||||
|