您的位置:首页 > 其它

Sieve of Eratosthenes[ZT]

2005-02-27 15:47 288 查看
Eratosthenes also conceived the "Sieve of Eratosthenes ", a method of identifying prime numbers.

A prime number is a natural number greater than 1 that can be divided without remainder only by itself and by 1. Natural numbers n that can be divided by a number less than n and greater than 1 are composite numbers. The Sieve of Eratosthenes identifies all prime numbers up to a given number n as follows:

Write down the numbers 1, 2, 3, ..., n. We will eliminate composites by marking them. Initially all numbers are unmarked.

Mark the number 1 as special (it is neither prime nor composite).

Set k=1. Until k exceeds or equals the square root of n do this:

Find the first number in the list greater than k that has not been identified as composite. (The very first number so found is 2.) Call it m. Mark the numbers
2m, 3m, 4m, ...
as composite. (Thus in the first run we mark all even numbers greater than 2. In the second run we mark all multiples of 3 greater than 3.)

m is a prime number. Put it on your list.

Set k=m and repeat.

http://www.math.utah.edu/~alfeld/Eratosthenes.html
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: