vote up 7 vote down star
7

For a library, I need to store the first primes numbers up to a limit L. This collection must have a O(1) lookup time (to check whether a number is prime or not) and it must be easy, given a number, to find the next prime number (assuming it is smaller than L).

Given that L is fixed, an Eratostene sieve to generate the list is fine. Right now, I use a packed boolean array to store the list, which contains only entries for odd numbers between 3 and L (inclusive). This takes (L-2)/2 bits of memory. I would like to be able to statically increase L without using more memory.

Is there a data structure using less memory with similar properties? Or with at least the constant lookup time? (odd numbers can then be enumerated until we get a prime)

(the language I wrote this in is Factor but this question would be the same in any language which has built-in or easily programmable packed bit arrays)

flag
1  
What's a typical 'L'? Is this for an embedded device where memory is tight? It might affect recommendations. Given that there are 50,847,534 primes under a billion, you might spend more time packing/unpacking then a straight-forward array of 4 byte integers. – Jeff Moser Jun 23 at 13:07
L is as of today 5,000,000. – Samuel Tardieu Jun 23 at 13:10
And I wouldn't want to need more than the ~320kB of memory I have today. – Samuel Tardieu Jun 23 at 13:19
So you want to store information in the order of 5,000,000 integer numbers into 320,000 bytes... – Daniel Daranas Jun 23 at 13:32
DanielDaranas: this is what is being done today. Given that only odd numbers primality is stored (and takes one bit of information, true or false), I store information about 2,500,000 odd numbers in less than 313,000 bytes. Why does it surprise you? – Samuel Tardieu Jun 23 at 14:31
show 2 more comments

6 Answers

vote up 9 vote down check

You can explicitly check more prime numbers to remove redundancy.

At the moment you do this only for two, by checking for divisibility by two explicitly and then storing only for odd numbers whether they are prime.

For 2 and 3 you get remainders 0 to 5, of which only 1 and 5 are not divisible by two or three and can lead to a prime number, so you are down to 1/3.

For 2, 3, and 5 you get 8 numbers out of 30, which is nice to store in a byte.

This is explained in more detail here.

link|flag
Indeed, filtering some more was one of the ideas I had. But I had not realized that modulo 30 gave a packing that was so efficient. I will give it a try! – Samuel Tardieu Jun 23 at 13:28
That's a great article! – Andy Mikula Jun 23 at 20:36
aka wheel factorisation primes.utm.edu/glossary/… if you don't want to read as long and metaphorical description. – Pete Kirkham Jun 23 at 21:21
vote up 2 vote down

At the moment you are treating 2 as special case and then having an array where every odd number is mapped to an element in the array (with some odd numbers being prime). You could improve on this by treating 2 and 3 as special cases recognising that the rest of the prime numbers are in the form 6n+1 or 6n-1 (that is for all primes p where p > 3, p mod 6 = 1 or 5). This can be further generalised - see Wikipedia. For all primes p > 5, p mod 30 = 1, 7, 11, 13, 17, 19, 23 or 29. You could keep going with this and reduce the memory needed at the expense of processing time (although it will still be O(1), just a slower O(1)).

link|flag
vote up 1 vote down

Maybe a trie data structure which contains only the primes is what you're looking for. Instead of using characters as indexes you could use the integer digits. An implementation of this are Judy-Arrays.

Altough, they do not meet your O(1) requirement, they are extremely memory-efficient for similar keys (as most parts of numbers are) and pretty fast to look up with an O(m) (m=key-length) at maximum.

If you look up for a prime in the pre-generated tree, you can walk the tree until you find it or you are already at the node which is next to the preceeding and following prime.

link|flag
vote up 0 vote down

Given that memory is so cheap, I don't think you can do much better from a speed perspective than your existing scheme.

If there's a better solution, then I'd assume it'd take advantage of the Prime Number Theorem that shows that as L gets bigger, the limit of

π(L) / (L / ln(L)) approaches 1.

Perhaps a better solution would have an adaptive packing solution in a data structure sort of like a skip list.

link|flag
vote up 0 vote down

How about some kind of hash table?

You would need a very good hash function (something like n mod p, where p is not a multiple of any of the q lowest primes - choose q sufficiently high in order to minimise the number of collisions).

link|flag
vote up -2 vote down

If you can figure out which ones are Mersenne or other easily represented prime numbers, you might be able to save a few bits by using that representation with a flag for applicable numbers.

Also, how about storing the numbers as the difference from the previous number? Then the size shouldn't rise quite as fast (but lookup would be slow). Combining with the approach above, you could store Mersenne primes and the difference from the last Mersenne prime.

link|flag

Your Answer

Get an OpenID
or

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