I like the "allegedly" bit.
The referenced Wikipedia article gives what the writer claims is "An optimized implementation" of Eratosthenes' sieve.
Just for interest, I tried translating that "optimized implementation" to VBA. The VBA code is given below. And yes, it does run quite fast.
But contrary to what is claimed, it doesn't seem to be particularly optimal for at least a couple of reasons.
1. The writer's Booleans are all initially set to be true. The default VBA Boolean is false, so an extra (but unnecessary) VBA loop is needed to set them as true. Unnecessary loops can be inefficient, and this is so in this case.
2. A number of the non-primes are sieved out more than once. Arithmetical redundancy of that sort takes up calculation resources and time and isn't optimal.
Probably the writer was well aware of these, but felt the need to keep his/her Wikipedia exposition as straightforward as reasonable.
However, it's not that hard to give an alternate version of the code below to run about 30-40% faster. Maybe even faster again with a better code-writer than I.
Incidentally, using a division/remainder approach (rather than the step approach) to the Sieve of Erathosthenes is
very inefficient.
Bookmarks