Created
June 22, 2013 17:00
-
-
Save mike-anderson/5841584 to your computer and use it in GitHub Desktop.
incremental sieve of Eratosthenes
Based on the python implementation https://gist.github.com/Jach/1761175
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sieve = function (size) { | |
var primes = [], | |
i = 2, | |
nonprimes = {}; | |
while (primes.length < size) { | |
if (nonprimes[i] == undefined) { | |
primes.push(i); | |
nonprimes[i*i] = [i]; | |
} else { | |
var primefactors = nonprimes[i]; | |
primefactors.forEach(function (prime) { | |
if (nonprimes[i+prime] == undefined) { | |
nonprimes[i+prime] = []; | |
} | |
nonprimes[i+prime].push(prime); | |
}); | |
//save some memory and some search time | |
delete nonprimes[i]; | |
} | |
i=i+1; | |
} | |
return primes | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment