leetcode204 Count Primes 解题报告 发表于 2021-05-11 更新于 2021-05-28 分类于 -leetcode 英文原题Count the number of prime numbers less than a non-negative number, n. Example 123Input: n = 10Output: 4Explanation: There are 4 prime numbers less than 10, they are 2, 3, 5, 7. 分析 暴力法是会超时的,这题用了一个挺巧妙的方法叫埃氏筛法,就是先假设所有数都是质数,然后从2开始每碰到一个质数就可以确定这个数的所有倍数都不是质数。可以参考这里 python 代码123456789101112131415class Solution: def countPrimes(self, n: int) -> int: if n == 0 or n == 1: return 0 count = [True] * n count[0] = False count[1] = False for i in range(int(sqrt(n))+1): if count[i]: for j in range(i+i, n, i): count[j] = False return sum(count) 时间复杂度O(n)? 本文作者: 子寒 本文链接: http://zihan-super-blog.com/2021/05/11/leetcode204/ 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!