码迷,mamicode.com
首页 > 编程语言 > 详细

python埃式筛法求素数

时间:2017-02-19 12:05:02      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:pytho   div   个数   pre   turn   blog   python   log   while   

def _odd_iter():
    n = 1
    while(True):
        n = n + 2
        yield n
def _not_divisable(n):
    return lambda x : x % n > 0
def primes():
    yield 2
    it = _odd_iter()
    while(True):
        n = next(it)
        yield n
        it = filter(_not_divisable(n), it)
for n in primes():
    if n < 1000:
        print(n)
    else:
        break

 

首先,列出从2开始的所有自然数,构造一个序列:

2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...

取序列的第一个数2,它一定是素数,然后用2把序列的2的倍数筛掉:

3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...

取新序列的第一个数3,它一定是素数,然后用3把序列的3的倍数筛掉:

5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...

取新序列的第一个数5,然后用5把序列的5的倍数筛掉:

7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...

不断筛下去,就可以得到所有的素数。

python埃式筛法求素数

标签:pytho   div   个数   pre   turn   blog   python   log   while   

原文地址:http://www.cnblogs.com/rain-1/p/6414944.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!