What is a very efficient way of determining how many digits there are in an integer in C++?
|
1
|
|||||||||||||
|
|
|
Well, the most efficient way, presuming you know the size of the integer, would be a lookup. Should be faster than the much shorter logarithm based approach. If you don't care about counting the '-', remove the + 1.
|
||||||||||||||||
|
|
|
Note: "0" will have 0 digits! Just do In the end, use a profiler to know which of all the answers here will be faster on your machine... |
||||||
|
|
|
previous works for number >= 1. Original poster probably wants to handle zero. Whether or not negative numbers should include the '-' printed out in usual representation. It's also possible the original poster wants, effectively the magnitude of the largest representable integer in an implementation, which may be different. |
||||
|
|
|
The simplest way is to do:
log10 is defined in Skizz |
||||
|
|
|
A previous poster suggested a loop that divides by 10. Since multiplies on modern machines are a lot faster, I'd recommend the following code instead:
|
||||||||
|
|
|
Practical joke: This is the most efficient way (number of digits is calculated in compilte time):
May be useful to determine the width required for number field in formatting, input elements etc. |
||||
|
|
|
Here's a different approach:
This may not be efficient, just something different than what others suggested. |
||||
|
|
|
See Bit Twiddling Hacks for a much shorter version of the answer you accepted. It also has the benefit of finding the answer sooner if your input is normally distributed, by checking the big constants first. |
||||||
|
|
|
I like Ira Baxter's answer. Here is a template variant that handles the various sizes and deals with the maximum integer values (updated to hoist the upper bound check out of the loop):
To actually get the improved performance from hoisting the additional test out of the loop, you need to specialise max_decimal() to return constants for each type on your platform. A sufficiently magic compiler could optimise the call to max_decimal() to a constant, but specialisation is better with most compilers today. As it stands, this version is probably slower because max_decimal costs more than the tests removed from the loop. I'll leave all that as an exercise for the reader. |
||||||
|
|
|
where in
and
here's a simple test:
Of course any other implementation of an ordered set might be used for |
||
|
|
|
|
integer into a array then count the array |
||
|
|
|
|
The ppc architecture has a bit counting instruction. With that, you can determine the log base 2 of a positive integer in a single instruction. For example, 32 bit would be:
If you can handle a small margin of error on large values you can convert that to log base 10 with another few instructions:
This is platform specific and slightly inaccurate, but also involves no branches, division or conversion to floating point. All depends on what you need. I only know the ppc instructions off hand, but other architectures should have similar instructions. |
||
|
|
|
effective way
|
|||
|
|
|
|
Perhaps I misunderstood the question but doesn't this do it?
|
|||
|
|
