Python- Sieve of Eratosthenes- Compact Python

后端 未结 8 1159
醉话见心
醉话见心 2021-01-06 14:09

This is my code for finding primes using the Sieve of Eratosthenes.

list = [i for i in range(2, int(raw_input(\"Compute primes up to what number? \"))+1)]  
         


        
8条回答
  •  迷失自我
    2021-01-06 14:21

    The first thing to note is that what you have written is not the sieve of eratosthenes. Look how many loops a totally naive sieve of eratosthenes executes:

    def sieve1(n):
        loops = 0
        numbers = set(range(2, n))
        for i in range(2, int(n ** 0.5) + 1):
            for j in range(i * 2, n, i):
                numbers.discard(j)
                loops += 1
        return sorted(numbers), loops
    

    Tested:

    >>> sieve1(100)
    ([2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 
      43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97], 
     178)
    

    178 loops for 100 numbers (not including the sort). This can be improved with a few minor changes:

    def sieve2(n):
        loops = 0
        numbers = range(0, n)
        for prime in numbers:
            if prime < 2:
                continue
            elif prime > n ** 0.5:
                break
            for i in range(prime ** 2, n, prime):
                numbers[i] = 0
                loops += 1
        return [x for x in numbers if x > 1], loops
    

    Tested:

    >>> sieve2(100)
    ([2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 
      43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97], 
     102)
    

    102 loops for 100 numbers (not including the filter at the end). Now look at yours:

    def sieve3(n):
        loops = 0
        numbers = range(2, n)
        for i in numbers:
            for j in numbers:
                if j != i and j % i == 0:
                    numbers.remove(j)
                loops += 1
        return numbers, loops
    

    Tested:

    >>> sieve3(100)
    ([2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 
      43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97], 
     663)
    

    It gets worse:

    >>> [sieve1(x)[1] for x in [100, 1000, 10000]]
    [178, 2978, 41723]
    >>> [sieve2(x)[1] for x in [100, 1000, 10000]]
    [102, 1409, 16979]
    >>> [sieve3(x)[1] for x in [100, 1000, 10000]]
    [663, 28986, 1523699]
    

    At n = 10000, your implementation does almost 100x as much work!

    My suggestion would be to create a sensible implementation before making it "compact." Code golf can be fun, but it's nowhere near as challenging or as edifying as writing efficient code, whatever the length.

    That said, consider this one-liner (if you don't count the import, which you could get rid of by using lambda x, y: x - y in place of operator.sub). This implements the first algorithm with a small improvement:

    >>> from operator import sub
    >>> reduce(sub, (set(range(x ** 2, 100, x)) for x in range(2, int(100 ** 0.5) + 1)), set(range(2, 100)))
    set([2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97])
    

提交回复
热议问题