vote up 5 vote down star

This simple solution popped into my mind quickly.

#include <ctype.h>

int digit_exists_in
(
    const char *s
)
{
    while (*s)
    {
        if (isdigit(*s))
        {
            return 1;
        }
        else
        {
            s++;
        }
    }

    return 0;
}

int main(void)
{
    int foundDigit = digit_exists_in("abcdefg9ijklmn");

    return 0;
}

What other techniques could be applied to get better speed?

The actual strings being searched are variable length, and the characters themselves are ASCII, not the full character set. The strings are NUL terminated.

flag

16 Answers

vote up 17 vote down check

liw.fi is right, by the way. I was a bit surprised by this, since strcspn has to do a much more general problem than the isdigit() approach, but it seems to be the case:

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <assert.h>

#define NTESTS 10000
#define TESTSIZE 10000

char stest1[TESTSIZE];
char stest2[TESTSIZE];

int test_isdigit(char *s) {
    while (*s) {
        if (isdigit(*s)) return 1;
        s++;
    }
    return 0;
}

int test_range(char *s) {
    while (*s) {
        if ((*s >= '0') && (*s <= '9')) return 1;
        s++;
    }
    return 0;
}

int test_strcspn(char *s) {
    return s[strcspn(s, "0123456789")] != '\0';
}

int main(int argc, char **argv) {
    long int i;
    for (i=0; i<TESTSIZE; i++) {
        stest1[i] = stest2[i] = 'A' + i % 26;
    }
    stest2[TESTSIZE-1] = '5';

    int alg = atoi(argv[1]);

    switch (alg) {
        case 0:        
            printf("Testing strcspn\n");
            for (i=0; i<NTESTS; i++) {
                assert(test_strcspn(stest1) == 0);
                assert(test_strcspn(stest2) != 0);
            }
            break;
        case 1:
            printf("Testing isdigit() loop\n");
            for (i=0; i<NTESTS; i++) {
                assert(test_isdigit(stest1) == 0);
                assert(test_isdigit(stest2) != 0);
            }
            break;
        case 2:
            printf("Testing <= => loop\n");
            for (i=0; i<NTESTS; i++) {
                assert(test_range(stest1) == 0);
                assert(test_range(stest2) != 0);
            }
            break;
        default:
            printf("eh?\n");
            exit(1);
    }    

    return 0;
}

It's awfully hard to beat the standard libraries at their own game ... (the usual caveats apply -- YMMV)

$ gcc -O6 -Wall -o strcspn strcspn.c 

$ time ./strcspn 0
Testing strcspn

real    0m0.085s
user    0m0.090s
sys 0m0.000s

$ time ./strcspn 1
Testing isdigit() loop

real    0m0.753s
user    0m0.750s
sys 0m0.000s

$ time ./strcspn 2
Testing <= => loop

real    0m0.247s
user    0m0.250s
sys 0m0.000s


UPDATE: Just for fun, I added a bitmap lookup version based on Mike Dunlavey's answer:

char bitmap[256] = {
        /* 0x00 */ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
        /* 0x10 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
        /* 0x20 */ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
        /* 0x30 */ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
};

int test_bitmap(char *s) {
    while (!bitmap[*(unsigned char *)s]) s++;
    return (*s);
}

Which slightly outperforms the others (~.170s) but still can't touch strcspn!

link|flag
+1 for benchmarking and reporting. – RBerteig Apr 16 at 1:38
I get similar results, FWIW. test_range() and test_digit() execute almost identically, with strcspn being the clear 'winner'. – Nick Presta Apr 16 at 2:35
Here on OS X (Leopard), test_digit() performs pretty awfully (2.281 seconds real time), whereas test_range() performs alright (0.686 seconds) and test_strcspn() is still the clear winner (0.275 seconds). The system time for all of them is 0.003 to 0.006, but I notice the lag time for test_isdigit(). – Chris Lutz Apr 16 at 6:26
Ya. Using numbers and facts to back up your argument is cheating +1 – EvilTeach Apr 16 at 16:19
Very well done, actual benchmarking is always useful. I doubt there's a huge variation between compilers/architectures in this, but just in case: anyone wanting to use this code should run the benchmark themselves. – Lars Wirzenius Apr 17 at 7:15
show 1 more comment
vote up 0 vote down

Taking the test program and throwing my profiler at it yields the following.

      Count      %   % with           Time   Statement
                      child
-----------------------------------------------------------------------------------------------
                                             int test_isdigit(char *s)   
     20,000    0.0    0.0          2,160.4   {   
199,990,000   13.2    9.5     14,278,460.7       while (*s)  
                                                 {   
199,980,000   69.8   49.9     75,243,524.7            if (isdigit(*s)) return 1;  
199,970,000   17.0   12.1     18,312,971.5            s++;    
                                                 }   

     10,000    0.0    0.0          1,151.4       return 0;   
                                             }   

                                             int test_range(char *s)     
     20,000    0.0    0.0          1,734.2   {   
199,990,000   33.6    9.4     14,114,309.7       while (*s)  
                                                 {
199,980,000   32.2    9.0     13,534,938.6           if ((*s >= '0') && 
                                                        (*s <= '9')) return 1;   
199,970,000   34.2    9.5     14,367,161.9           s++;    
                                                 }   

     10,000    0.0    0.0          1,122.2       return 0;   
                                             }   

                                             int test_strcspn(char *s)   
     20,000    0.2    0.0          1,816.6   {   
     20,000   99.8    0.6        863,113.2       return s[strcspn(s, "0123456789")] 
                                                          == '0'; 
                                             }

strcspn does the job well enough. Looking at the asm code for it, I see it builds a bitmap of size 256 sets the bits based on the search characters, then processes the string.

The bit map gets built on the stack once for every call.

One other approach would be to build and keep the bit map, and reused it each time.

Another approach would be to do the operations in parallel using the techniques that Chris Smith talked about.

For the moment strcspn will suffice.

link|flag
vote up 0 vote down

Memory Prefetch

If your strings are very long, either get your compiler to do it or manually unroll your loop and drop in a memory prefetch instruction or two every cache-line.

That way while the CPU is scanning, the memory controller can be pulling in the next lines of data.

If you save the length of the string when you create it you can skip all the checks for the NUL byte, which means you can unroll your loop to operate in bigger chunks and reduce the number of compare and branch operations, although with current branch predictors, it honestly doesn't make much difference.

Even with great CPU branch predictors, the loop will slow down if it has to check the loop counter every time through the loop to decide when to do a memory prefetch so unrolling is still helpful in that case.

Profiling Feedback

For best performance the CPU does need to get the branches hinted correctly, and that's where profiling feedback comes in very handy. Otherwise the compiler is just making a somewhat educated guess.

link|flag
vote up 1 vote down

Here's a version that may or may not be faster, but it handles a NULL pointer...

int digit_exists_in(const char *s)
{
    if (!s)
        return (0);
    while (*s)
        if (isdigit(*s++))
            return (1);
    return (0);
}
link|flag
vote up 0 vote down

Of course, you can sacrifice accuracy for speed:

int digit_exists_in(const char* s)
{
    return 0;
}

This algorithm has a complexity of O(1) and an approximacity of O((246/256)^N).

link|flag
I like your Level 1 Shield of Community Wiki. – ryeguy Apr 17 at 20:43
Agreed on the shield! The algorithm can be improved to approximacity of O((246/256)^(N-1)) with no increase in complexity (in big-O) by replacing the "return 0" with "return isdigit(*s)" – DocMax Apr 17 at 21:34
Thanks, it was so I couldn't gain any reputation from a joke. (Though now I think it works both ways.) – aib Apr 19 at 0:17
vote up 0 vote down

I may be wrong, but there may be a faster way.

Quicksort the string.

The serial search has a best time of O(1), a mean of O(1/2n) and worse case of O(n).

Quicksort has best O(log n), mean O(nlog n), worse case O(n^2).

The thing is, you can bail out of the quicksort as soon as you see a digit. If the quicksort actually completes, the digit will be at the beginning of the sorted string, so you'll find it then in O(1).

The achievement here it to shift the best, mean and worse case behaviours. A quicksort will have worse worst case behaviour, but better mean behaviour.

link|flag
P.s. this post is a joke :-) – Blank Xavier Apr 15 at 20:00
Good thinking. I prefer merge sort, which is always NlogN. Of course, that's only logN times slower than N :) – Mike Dunlavey Apr 15 at 23:07
Would it be quicker to use XML ? ;-) – Martin Beckett Apr 17 at 20:56
If you're going to BS, do it properly. Anyone can see 1/2 n is better than n log n. – Matthew Flaschen Apr 18 at 5:27
@Matthew - O(nlog n) is the mean for a completed quicksort. However, in this method, the quicksort usually does not need to complete. – Blank Xavier Apr 18 at 7:02
vote up 0 vote down

Have a human look at it. Humans can do this in O(1) time, we have MUCH larger word sizes than even modern processors.

That said, actual time would still be better with your method...what with the difference in cycle time between a modern core and a human brain.

link|flag
1  
Not to mention the caloric load (twinkies/invocation :) – Mike Dunlavey Apr 15 at 23:10
A downvote? Seriously? – Jeff Apr 16 at 13:57
1  
++ for a sense of humor – Mike Dunlavey Apr 16 at 22:10
vote up 11 vote down

I would start by using the appropriate library function, strcspn, on the assumption that the library has been optimized with extreme prejudice:

#include <string.h>
#include <stdio.h>

int digit_exists_in(const char *s)
{
    return s[strcspn(s, "0123456789")] != '\0';
}

int main(void)
{
    printf("%d\n", digit_exists_in("foobar"));
    printf("%d\n", digit_exists_in("foobar1"));
    return 0;
}

If the library hasn't been optimized sufficiently, it'd be a good idea to put the optimization into the library so everyone can benefit. (You have the source, right?)

link|flag
Interesting. I rejected strspn as the doc seemed to suggest that if the first character was not in the search set then the function would return 0. – EvilTeach Apr 16 at 16:11
strspn return an integer value specifying the length of the substring in string that consists entirely of characters in strCharSet. If string begins with a character not in strCharSet, the function returns 0. No return value is reserved to indicate an error. – EvilTeach Apr 16 at 16:14
I will revisit strspn and strcspn. +1 – EvilTeach Apr 16 at 16:15
vote up 1 vote down

Just for fun, maybe something allong the lines of:

 // accumulator
unsigned char thereIsADigit = 0;
// lookup table
unsigned char IsDigit[256] = {0,0,0 ..., 1,1,1,1,1,1,1,1,1,0,0,0 ...};

// an unrolled loop, something like:
thereIsADigit |= IsDigit[s[0]];
thereIsADigit |= IsDigit[s[1]];
thereIsADigit |= IsDigit[s[2]];
thereIsADigit |= IsDigit[s[3]];
thereIsADigit |= IsDigit[s[4]];
thereIsADigit |= IsDigit[s[5]];
thereIsADigit |= IsDigit[s[6]];
thereIsADigit |= IsDigit[s[7]];
if (thereIsADigit) break;
s += 8;

On the IBM 360 there was a "translate" instruction that could do this in one step.

OK, OK, Christopher Smith's answer got me thinking. Suppose you are only using 7-bit ASCII. Here's a way to do SIMD with wide-integer arithmetic.

Suppose C is a 32-bit word containing 4 characters.

 // compare by subtracting in 8-bit 2s complement arithmetic
( (C + ((0x3a3a3a3a ^ 0x7f7f7f7f) + 0x01010101)) // set high bit for any char <= '9'
  &
  (0x2f2f2f2f + ((C ^ 0x7f7f7f7f) + 0x01010101)) // set high bit for any char >= '0'
) // high bit is set for any char <= '9' and >= '0'
& 0x80808080 // look only at the high-order bits
// if any of these 4 bits is 1, there is a digit in C
// if the result is zero, there are no digits in C

It depends on the high-order bit of each character being initially zero, so that a carry into that bit will not propogate. (I'm sure this could be simplified.)

link|flag
vote up 3 vote down

The real question is how important is it for this function to be optimal? I say leave the simple solution and profile it. You should only optimize it if it is causing a bottleneck in your code.

link|flag
vote up 9 vote down

There isn't a faster algorithm, but you can look at a full register's worth of bytes per instruction or use SIMD operations to speed things up. You can either use a mask and zero test to see if it is even possible if there are any digits in a range, or if your SIMD operations are fast enough on large enough vectors, you could do iterate through tests for specific numerical values in a vector of bytes faster than doing character compares.

So, for example, you could do something like:

byte buffer[8] = { 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30 };
uint64 *mask = (uint64 *) buffer; //this is just for clarity

if (*((uint64 *) s) & *mask) == 0)
    //You now don't need to do the < '0' test for the next 8 bytes in s

Some optimizers might be smart enough to do this for you just from your code sample above.

You had better be comparing a TON of bytes to be thinking about optimizations at this level though.

link|flag
This tells you if there are no chars 0..., P..., p... What do you do then? – Mike Dunlavey Apr 15 at 19:49
Surely it tells you that there are no numbers in the current 8 numbers you're looking at, so you skip to the next 8 numbers. – justinhj Apr 15 at 20:24
Oh, OK. Zero means there are no numbers in that set (and no letters >='P' or 'p'), but non-zero does not mean there are numbers. So this saves significant time if letters >= 'P' or 'p' are rarely used. – Mike Dunlavey Apr 15 at 23:03
All digits have 30 in the left nibble. if you and them and compare it to the mask and they are equal, then it is a digit. – EvilTeach Apr 16 at 19:29
@Evil: Understand, but that's not what this code does. It only tells you if the string is like "AbCdEfGh", i.e. only letters and only letters that come before P or p. Or am I missing something? – Mike Dunlavey Apr 16 at 22:01
show 3 more comments
vote up 1 vote down

You could go multithreaded, although that's probably adding too much complexity to the algorithm for something that's already pretty fast.

link|flag
Good point, but for all but the longest strings, this is going to be a pessimization due to the overhead of threads. – Iraimbilanja Apr 15 at 18:41
You could also hurt yourself with threads due to horrible caching effects. For stuff like this one would hope the real limiter would be memory latency/bandwidth, and using multiple cores could potentially make it worse. – Christopher Smith Apr 15 at 18:44
If the strings are big enough, sounds like a winner. – Milhous Apr 16 at 3:02
vote up 1 vote down

As others have said, you can't get below O(N).

I can think of a contrived scenario with logarithmic speed... Say you're writing a text editor and it needs a "does this file contain any digits" feature. You can keep a sorted array of all unique characters present in the file, update it on every keystroke, and query it with binary search. This probably lies outside the scope of your question though (and can be done in several better ways).

link|flag
vote up 1 vote down

if you really want to reduce the overhead time and you don't mind making it specific for char, then you can check the ascii values between 0 and 9 inclusive.

48 to 57 decimal

this removes a stack call.

I should have said lookup table as well...

link|flag
That's exactly what isdigit does, and you can just make your own inline isdigit implementation. but yeah. – Iraimbilanja Apr 15 at 18:30
Scratch that, the comments to Bondy's answer refute me. – Iraimbilanja Apr 15 at 18:42
vote up 2 vote down

Conceptually there is no faster way. This is assuming that you have a string which where the placement of digits is seemingly random. This forces you to search every item in the string for a digit hence front to back is as likely to find the digit first as any other search mechanism.

link|flag
ya, there is no pattern to the position of digits which would lend itself to an educated, or cache based guess. – EvilTeach Apr 15 at 18:40
vote up 7 vote down

Any algorithm will be O(N).

I assume isdigit is pretty efficient already.

link|flag
At least O(N) :) It's easy to implement pessimizations and "smart" algorithms :) – Mihai Limbasan Apr 15 at 18:25
Good point, you could have some less efficient algorithms, but they'd probably be much harder to implement. – Brian R. Bondy Apr 15 at 18:28
In order to take advantage of short circuits, couldn't you write "!(char < '0') && !(char > '9')" – Kibbee Apr 15 at 18:37
isdigit() is usually a table lookup, i.e. faster than two comparisons. And locale-safe to boot. ;-) – DevSolar Apr 15 at 18:38
isdigit is typically a bitmask operation - and quicker than the two-part test. – Jonathan Leffler Apr 15 at 18:41
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.