I would like to know how I can find the length of an integer in C.
For instance:
- 1 => 1
- 25 => 2
- 12512 => 5
- 0 => 1
etc.
How can I do this in C?
|
Why not just take the base-10 log of the absolute value of the number, round it down, and add one? This works for positive and negative numbers that aren't 0, and avoids having to use any string conversion functions. The
You should wrap this in a clause ensuring that Additionally, you may want to add one to the final result if the input is negative, if you're interested in the length of the number including its negative sign. N.B. The floating-point nature of the calculations involved in this method may cause it to be slower than a more direct approach. See the comments for Kangkan's answer for some discussion of efficiency. |
|||||||||||
|
and second one will work for negative numbers too:
|
|||||||||||||
|
|
If you're interested in a fast and very simple solution, the following might be quickest (this depends on the probability distribution of the numbers in question):
While it might not win prizes for the most ingenious solution, it's trivial to understand and also trivial to execute - so it's fast. On a Q6600 using MSC I benchmarked this with the following loop:
This solution takes 0.062s, the second-fastest solution by Pete Kirkham using a smart-logarithm approach takes 0.115s - almost twice as long. However, for numbers around 10000 and below, the smart-log is faster. At the expense of some clarity, you can more reliably beat smart-log (at least, on a Q6600):
This solution is still 0.062s on large numbers, and degrades to around 0.09s for smaller numbers - faster in both cases than the smart-log approach. (gcc makes faster code; 0.052 for this solution and 0.09s for the smart-log approach). |
|||||||
|
|
You can write a function like this:
|
|||||||||||||||||||||
|
|
length of n:
|
|||||||||||
|
|
The most efficient way could possibly be to use a fast logarithm based approach, similar to those used to determine the highest bit set in an integer.
This (possibly premature) optimisation takes 0.65s for 20 million calls on my netbook; iterative division like zed_0xff has takes 1.6s, recursive division like Kangkan takes 1.8s, and using floating point functions (Jordan Lewis' code) takes a whopping 6.6s. Using snprintf takes 11.5s, but will give you the size that snprintf requires for any format, not just integers. Jordan reports that the ordering of the timings are not maintained on his processor, which does floating point faster than mine. The easiest is probably to ask snprintf for the printed length:
|
|||||||||||||||||
|
|
Yes, using sprintf.
Alternatively, you can do this mathematically using the
|
|||||||||||
|
|
The number of digits of an integer
Or you can run a loop to count the digits yourself: do integer division by 10 until the number is 0:
You have to be a bit careful to return |
|||
|
|
|
Quite simple
|
|||||||||||
|
|
keep dividing by ten until you get zero, then just output the number of divisions.
|
|||||||
|
|
I think I got the most efficient way to find the length of an integer its a very simple and elegant way here it is:
|
||||
|
|
log10(10**n)yields the exact value for powers of 10 from 1 to 2**19, at least with gcc and glibc. But I wouldn't count on it for all implementations. (**denotes exponentiation; there's no such operator in C.) – Keith Thompson Aug 29 '11 at 6:02