vote up 6 vote down star
4

for instance,

n = 3432, result 4

n = 45, result 2

n = 33215, result 5

n = -357, result 3

I guess I could just turn it into a string then get the length of the string but that seems convoluted and hack-y.

flag

3  
Getting the string length would fail in case of negative numbers. So get the length of the absolute value instead. ;-) – Workshop Alex Jul 1 at 12:50
char buff[100]; int r = sprintf(buff,"%s",n) - (r<0); – paxdiablo Jul 1 at 13:25
you mean decimal digits? decimal places are something that real numbers have, and integers don't, by definition. – Will Jul 1 at 13:38
Uh ... Pax, is that a legal expression? Since r doesn't have a value before the assignment, the "(r < 0)" part seems scary. Or perhaps you meant that it should bne done as a second step, so it's just the notation that I'm not getting (I'm reading it as if it were C). – unwind Jul 1 at 13:41
1  
Must ... remember ... to ... unit ... test! char buff[100]; int r = sprintf(buff,"%d",n) - (n<0); – paxdiablo Jul 2 at 4:33
show 5 more comments

9 Answers

vote up 25 vote down check
floor (log10 (abs (x))) + 1

http://en.wikipedia.org/wiki/Logarithm

link|flag
7  
Not when x is zero. – finnw Jul 1 at 12:31
12  
so check that it isn't zero before... – Nathan Fellman Jul 1 at 12:44
2  
My ancient understanding of C-type math libraries was that log and similar functions were fairly expensive, so I would tend to favor simple division, a la Pax's solution. Anyone know/comment? – John Pirie Jul 1 at 13:08
3  
This would be needlessly slow. Don't use expensive functions such as log10() without a reason. The fast, integer function is simple enough to bother writing it. – stormsoul Jul 1 at 14:31
3  
It turns out that although simple division is faster for small values, logarithm scales much better. If you call the division algorithms with every int from MIN_INT to MAX_INT (and repeat that the same 100m times as Paz's examples), you end up with an average of 13.337 seconds per call. Doing the same with Logarithm is an average of 8.143 seconds, the recursion takes 11.971 seconds, and the cascading If statements ends up taking an average of 0.953 seconds. So, the Daily-WTF-looking solution is an order of magnitude faster, but in the long run, this is in second place. – Matt Poush Jul 1 at 18:55
show 12 more comments
vote up 41 vote down

The recursive approach :-)

int numPlaces (int n) {
    if (n < 0) return numPlaces ((n == MININT) ? MAXINT : -n);
    if (n < 10) return 1;
    return 1 + numPlaces (n / 10);
}

Or iterative:

int numPlaces (int n) {
    int r = 1;
    if (n < 0) n = (n == MININT) ? MAXINT : -n;
    while (n > 9) {
        n /= 10;
        r++;
    }
    return r;
}

Or raw speed:

int numPlaces (int n) {
    if (n < 0) n = (n == MININT) ? MAXINT : -n;
    if (n < 10) return 1;
    if (n < 100) return 2;
    if (n < 1000) return 3;
    if (n < 10000) return 4;
    if (n < 100000) return 5;
    if (n < 1000000) return 6;
    if (n < 10000000) return 7;
    if (n < 100000000) return 8;
    if (n < 1000000000) return 9;
    /*      2147483647 is 2^31-1 - add more ifs as needed
       and adjust this final return as well. */
    return 10;
}

Those above have been modified to better process MININT. On any weird systems that don't follow sensible 2n two's complement rules for integers, they may need further adjustment.

The raw speed version actually outperforms the floating point version, modified below:

int numPlaces (int n) {
    if (n == 0) return 1;
    return floor (log10 (abs (n))) + 1;
}

With a hundred million iterations, I get the following results:

Raw speed with 0:            0 seconds
Raw speed with 2^31-1:       1 second
Iterative with 2^31-1:       5 seconds
Recursive with 2^31-1:       6 seconds
Floating point with 1:       6 seconds
Floating point with 2^31-1:  7 seconds

That actually surprised me a little - I thought the Intel chips had a decent FPU but I guess general FP operations still can't compete with hand-optimized integer code.

Update following stormsoul's suggestions:

Testing the multiply-iterative solution by stormsoul gives a result of 4 seconds so, while it's much faster than the divide-iterative solution, it still doesn't match the optimized if-statement solution.

Choosing the arguments from a pool of 1000 randomly generated numbers pushed the raw speed time out to 2 seconds so, while it appears there may have been some advantage to having the same argument each time, it's still the fastest approach listed.

Compiling with -O2 improved the speeds but not the relative positions (I increased the iteration count by a factor of ten to check this).

Any further analysis is going to have to get seriously into the inner workings of CPU efficiency (different types of optimization, use of caches, branch prediction, which CPU you actually have, the ambient temperature in the room and so on) which is going to get in the way of my paid work :-). It's been an interesting diversion but, at some point, the return on investment for optimization becomes too small to matter. I think we've got enough solutions to have answered the question (which was, after all, not about speed).

Further update:

This will be my final update to this answer barring glaring errors that aren't dependent on architecture. Inspired by stormsoul's valiant efforts to measure, I'm posting my test program (modified as per stormsoul's own test program) along with some sample figures for all methods shown in the answers here. Keep in mind this is on a particular machine, your mileage may vary depending on where you run it (which is why I'm posting the test code).

Do with it as you wish:

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <limits.h>

#define numof(a) (sizeof(a) / sizeof(a[0]))

/* Random numbers and accuracy checks. */

static int rndnum[10000];
static int rt[numof(rndnum)];

/* All digit counting functions here. */

static int count_recur (int n) {
    if (n < 0) return count_recur ((n == INT_MIN) ? INT_MAX : -n);
    if (n < 10) return 1;
    return 1 + count_recur (n / 10);
}

static int count_diviter (int n) {
    int r = 1;
    if (n < 0) n = (n == INT_MIN) ? INT_MAX : -n;
    while (n > 9) {
        n /= 10;
        r++;
    }
    return r;
}

static int count_multiter (int n) {
    unsigned int num = abs(n);
    unsigned int x, i;
    for (x=10, i=1; ; x*=10, i++) {
        if (num < x)
            return i;
        if (x > INT_MAX/10)
            return i+1;
    }
}

static int count_ifs (int n) {
    if (n < 0) n = (n == INT_MIN) ? INT_MAX : -n;
    if (n < 10) return 1;
    if (n < 100) return 2;
    if (n < 1000) return 3;
    if (n < 10000) return 4;
    if (n < 100000) return 5;
    if (n < 1000000) return 6;
    if (n < 10000000) return 7;
    if (n < 100000000) return 8;
    if (n < 1000000000) return 9;
    /*      2147483647 is 2^31-1 - add more ifs as needed
    and adjust this final return as well. */
    return 10;
}

static int count_revifs (int n) {
    if (n < 0) n = (n == INT_MIN) ? INT_MAX : -n;
    if (n > 999999999) return 10;
    if (n > 99999999) return 9;
    if (n > 9999999) return 8;
    if (n > 999999) return 7;
    if (n > 99999) return 6;
    if (n > 9999) return 5;
    if (n > 999) return 4;
    if (n > 99) return 3;
    if (n > 9) return 2;
    return 1;
}

static int count_log10 (int n) {
    if (n < 0) n = (n == INT_MIN) ? INT_MAX : -n;
    if (n == 0) return 1;
    return floor (log10 (n)) + 1;
}

static int count_bchop (int n) {
    int r = 1;
    if (n < 0) n = (n == INT_MIN) ? INT_MAX : -n;
    if (n >= 100000000) {
        r += 8;
        n /= 100000000;
    }
    if (n >= 10000) {
        r += 4;
        n /= 10000;
    }
    if (n >= 100) {
        r += 2;
        n /= 100;
    }
    if (n >= 10)
        r++;

    return r;
}

/* Structure to control calling of functions. */

typedef struct {
    int (*fnptr)(int);
    char *desc;
} tFn;

static tFn fn[] = {
    NULL,                              NULL,
    count_recur,    "            recursive",
    count_diviter,  "     divide-iterative",
    count_multiter, "   multiply-iterative",
    count_ifs,      "        if-statements",
    count_revifs,   "reverse-if-statements",
    count_log10,    "               log-10",
    count_bchop,    "          binary chop",
};
static clock_t clk[numof (fn)];

int main (int c, char *v[]) {
    int i, j, k, r;
    int s = 1;

    /* Test code:
        printf ("%11d %d\n", INT_MIN, count_recur(INT_MIN));
        for (i = -1000000000; i != 0; i /= 10)
            printf ("%11d %d\n", i, count_recur(i));
        printf ("%11d %d\n", 0, count_recur(0));
        for (i = 1; i != 1000000000; i *= 10)
            printf ("%11d %d\n", i, count_recur(i));
        printf ("%11d %d\n", 1000000000, count_recur(1000000000));
        printf ("%11d %d\n", INT_MAX, count_recur(INT_MAX));
    /* */

    /* Randomize and create random pool of numbers. */

    srand (time (NULL));
    for (j = 0; j < numof (rndnum); j++) {
        rndnum[j] = s * rand();
        s = -s;
    }
    rndnum[0] = INT_MAX;
    rndnum[1] = INT_MIN;

    /* For testing. */
    for (k = 0; k < numof (rndnum); k++) {
        rt[k] = (fn[1].fnptr)(rndnum[k]);
    }

    /* Test each of the functions in turn. */

    clk[0] = clock();
    for (i = 1; i < numof (fn); i++) {
        for (j = 0; j < 10000; j++) {
            for (k = 0; k < numof (rndnum); k++) {
                r = (fn[i].fnptr)(rndnum[k]);
                /* Test code:
                    if (r != rt[k]) {
                        printf ("Mismatch error [%s] %d %d %d %d\n",
                            fn[i].desc, k, rndnum[k], rt[k], r);
                        return 1;
                    }
                /* */
            }
        }
        clk[i] = clock();
    }

    /* Print out results. */

    for (i = 1; i < numof (fn); i++) {
        printf ("Time for %s: %10d\n", fn[i].desc, (int)(clk[i] - clk[i-1]));
    }

    return 0;
}

And here's the leaderboard for my environment:

Optimization level 0:

Time for reverse-if-statements:       1704
Time for         if-statements:       2296
Time for           binary chop:       2515
Time for    multiply-iterative:       5141
Time for      divide-iterative:       7375
Time for             recursive:      10469
Time for                log-10:      26953

Optimization level 3:

Time for         if-statements:       1047
Time for           binary chop:       1156
Time for reverse-if-statements:       1500
Time for    multiply-iterative:       2937
Time for      divide-iterative:       5391
Time for             recursive:       8875
Time for                log-10:      25438
link|flag
4  
The second craziest use of recursion I know. The first is to find a number of elements in a list. – sharptooth Jul 1 at 12:37
2  
Hence the smiley :-) I'm actually disappointed that I'm not number one. I'll have to try harder next time. – paxdiablo Jul 1 at 12:50
1  
True, why do things the easy way when there are such beautiful complex solutions. ;-) – Workshop Alex Jul 1 at 12:51
1  
Recursive version seems to me like the cleanest, simplest, best self-documenting solution posted. – John Pirie Jul 1 at 13:06
1  
A small performance tip - when you know some value is always non-negative, use unsigned types. They are slightly faster to multiply and divide. The compiler might guess for you that some variable is never negative and make this optimization automatically, but again, it might not. In more complex situations it never does. – stormsoul Jul 2 at 10:46
show 24 more comments
vote up 12 vote down

Binary search pseudo algorithm to get no of digits of r in v..

if (v < 0 ) v=-v;

r=1;

if (v >= 100000000)
{
  r+=8;
  v/=100000000;
}

if (v >= 10000) {
    r+=4;
    v/=10000;
}

if (v >= 100) {
    r+=2;
    v/=100;
}

if( v>=10)
{
    r+=1;
}

return r;
link|flag
3  
Why the downvote, this looks even more efficient than the divide-by-ten loops? – paxdiablo Jul 1 at 13:37
Downvote was not from me, but I suspect it was because this is less readable than Wayne Shephard's variation (and probably slower). – Brian Jul 1 at 14:04
3  
I see, but I don't think it's right to downvote something for being less helpful - the popup clearly states "This answer is not helpful". In that case, I would upvote the other and leave this one alone. This was a genuine improvement over the /10 iteration. Still, it's positive now so no harm, no foul. (This isn't directed at you Brian since, as you already said, you didn't do it). Just food for thought for whoever did. – paxdiablo Jul 1 at 14:12
3  
My algorithm can be easily extended for longlong variable by having another if statement at the beginning if (v >= 10000000000000000LL) { r+=16; v/=10000000000000000LL; } and will be faster than all the approaches. – lakshmanaraj Jul 2 at 7:11
Why there was a downvote today also? – lakshmanaraj Jul 2 at 12:19
show 3 more comments
vote up 4 vote down

Divide by 10 in a loop until the result reaches zero. The number of iterations will correspond to the number of decimal digits.

Assuming that you expect to get 0 digits in a zero value:

int countDigits( int value )
{
    int result = 0;
    while( value != 0 ) {
       value /= 10;
       result++;
    }
    return result;
}
link|flag
floor(log10(abs(x)))+1 would be faster, but eduffy has already suggested that! :-) – Workshop Alex Jul 1 at 12:49
I'd be curious to see that timed. I'd almost think that an optimized series of if statements (based on maxint) may outperform a floating point logarithm (but I'm too lazy to test it myself). – paxdiablo Jul 1 at 12:52
It's never going to reach zero, is it? – John Pirie Jul 1 at 12:53
@John Pirie: Why wouldn't it? I mean integer division and when applied iteratively to the same variable it will eventually give zero. – sharptooth Jul 1 at 12:55
@JP, if you keep dividing an integer by 10, it will reach zero eventually. – paxdiablo Jul 1 at 12:56
show 6 more comments
vote up 3 vote down

From Bit Twiddling Hacks :

Find integer log base 10 of an integer the obvious way

Note the ordering of comparisons in it.

link|flag
vote up 2 vote down

You can do: floor (log10 (abs (x))) + 1 Or if you want to save on cycles you could just do comparisons

if(x<10)
  return 1;
if(x<100)
  return 2;
if(x<1000)
  return 3;
etc etc

This avoids any computationally expensive functions such as log or even multiplication or division. While it is inelegant this can be hidden by encapsulating it into a function. It isn't complex or difficult to maintain so I would not dismiss this approach on account of poor coding practice; I feel to do so would be throwing the baby out with the bath water.

link|flag
or I could just throw up a dialog box and ask the user, heh – willc2 Jul 1 at 13:26
That's unlikely to be faster, @willc2, especially with the users I have to deal with on a daily basis. – paxdiablo Jul 1 at 13:36
1  
And why the downvote here? This turns out to be blindingly fast. – paxdiablo Jul 1 at 13:37
large, chained if-blocks are code smell, and bad design. – abelenky Jul 1 at 14:14
Says you! :-) – paxdiablo Jul 1 at 14:32
show 1 more comment
vote up 2 vote down
if (x == MININT) return 10;  //  abs(MININT) is not defined
x = abs (x);
if (x<10) return 1;
if (x<100) return 2;
if (x<1000) return 3;
if (x<10000) return 4;
if (x<100000) return 5;
if (x<1000000) return 6;
if (x<10000000) return 7;
if (x<100000000) return 8;
if (x<1000000000) return 9;
return 10; //max len for 32-bit integers

Very inelegant. But quicker than all the other solutions. Integer Division and FP logs are expensive to do. If performance isn't an issue, the log10 solution is my favorite.

link|flag
That actually turns out to be the fastest method even for the worst case (2^32-1) - see my update fo timings. – paxdiablo Jul 1 at 13:33
But it is total code-smell, and not scalable or portable. – abelenky Jul 1 at 14:13
5  
I often suspect that "code smell" is a term trotted out by people who just don't like the code - it seems a very unscientific term. This code is perfectly readable (to me at least and to anyone else with half a brain if you add one simple comment line) and will outperform any other solution listed here (very important in the environment I was forged in). And the algorithm is scalable at O(log n) and portable if you just add more if statements to suit the environment you're working in. – paxdiablo Jul 1 at 14:27
The question is tagged C and math. Any solution is welcome, even the fastest. – Ben Jul 1 at 14:44
1  
It's fast because it is just one compare per digit. The Iterative solutions are one compare, one division, and one increment per digit. Integer division is expensive, 17 cycles on a C2D. log10 is well over 100 cycles. – Wayne Sheppard Jul 1 at 15:27
show 4 more comments
vote up 1 vote down

int n = 437788; int N = 1; while (n /= 10) N++;

link|flag
What about negative numbers? – ChrisF Jul 1 at 13:07
1  
Will work okay for negative numbers too - will divide in a loop until n becomes zero and then the loop will stop. – sharptooth Jul 1 at 13:16
negate it beforehand then, duh. – artificialidiot Jul 1 at 13:18
No need for negation here. It will iterate until the result equals zero. – sharptooth Jul 1 at 13:47
1  
@ChrisF: The end-of-loop test expression in this code is an ASSIGNMENT operator, not a comparison! read it as: while(n = n/10, n!=0) - the last expression after a comma being the real end-of-loop test. – stormsoul Jul 1 at 15:26
show 1 more comment
vote up 1 vote down

DON'T use floor(log10(...)). These are floating-point functions, and slow ones, to add. I believe the fastest way would be this function:

int ilog10(int num)
{
   unsigned int num = abs(num);
   unsigned int x, i;
   for(x=10, i=1; ; x*=10, i++)
   {
      if(num < x)
         return i;
      if(x > INT_MAX/10)
         return i+1;
   }
}

Note that the binary search version some people suggested could be slower due to branch mispredictions.

EDIT:

I did some testing, and got some really interesting results. I timed my function together with all the functions tested by Pax, AND the binary search function given by lakshmanaraj. The testing is done by the following code snippet:

start = clock();
for(int i=0; i<10000; i++)
   for(int j=0; j<10000; j++)
      tested_func(numbers[j]);
end = clock();
tested_func_times[pass] = end-start;

Where the numbers[] array contains randomly generated numbers over the entire range of the int type (barring MIN_INT). The testing was repeated for each tested function on THE SAME numbers[] array. The entire test was made 10 times, with results averaged over all passes. The code was compiled with GCC 4.3.2 with -O3 optimization level.

Here are the results:

floating-point log10:     10340ms
recursive divide:         3391ms
iterative divide:         2289ms
iterative multiplication: 1071ms
unrolled tests:           859ms
binary search:            539ms

I must say I got really astonished. The binary search performed far better than I thought it would. I checked out how GCC compiled this code to asm. O_O. Now THIS is impressive. It got optimized much better than I thought possible, avoiding most branches in really clever ways. No wonder it is FAST.

link|flag
Well, the fastest way turns out to be unrolling that loop into hand-optimized if statements. But you're dead right about the slowness of floating point. – paxdiablo Jul 1 at 14:34
@Pax: Floating point being slower than integer is one thing, and log10() and floor() being VERY slow is another. I was referring to the latter. – stormsoul Jul 1 at 15:12
@Pax: Test this code and we'll see ;). – stormsoul Jul 1 at 15:43
I'm going to vote this one up for the clever use of multiplication on the threshold rather than division on the value. I suppose you could invent a CPU where division was faster but I don't think I've ever seen one, and I'd probably fire the engineer that did it :-) – paxdiablo Jul 1 at 15:53
Leave it with me, @stormsoul, I'll get back to you in about 8 hours (it's midnight here in Oz). – paxdiablo Jul 1 at 15:54
show 2 more comments

Your Answer

Get an OpenID
or

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