Finding prime numbers with the Sieve of Eratosthenes (Originally: Is there a better way to prepare this array?)

前端 未结 13 1644
攒了一身酷
攒了一身酷 2020-12-02 23:38

Note: Version 2, below, uses the Sieve of Eratosthenes. There are several answers that helped with what I originally asked. I have chosen the Sieve of Era

13条回答
  •  天命终不由人
    2020-12-03 00:01

    Now that you've got a basic sieve in place, note that the inner loop need only continue until temp[i]*temp[i] > prime.

提交回复
热议问题