Eratosthenes筛
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eratosthenes筛相关的知识,希望对你有一定的参考价值。
Returns an array of all the prime numbers up to (n) using an implementation of the Sieve of Eratosthenes.
var getPrimes = function (n) { var numbers = [], multiple, i, j, len, square = function (x) { return x * x; }; for(i = 2; i <= n; i++) { numbers.push(i); } for(j = 0; square(numbers[j]) < n; j++) { multiple = numbers[j]; for(i = 0, len = numbers.length; i < len; i++) { if(numbers[i] % multiple === 0) { if(numbers[i] === multiple) { i++; continue; } numbers.splice(i, 1); } } } return numbers; };
以上是关于Eratosthenes筛的主要内容,如果未能解决你的问题,请参考以下文章
简单质数筛法-试除法,Eratosthenes筛法,线性筛法