首页 > 代码库 > Leetcode problem-204 Count Primes 题解
Leetcode problem-204 Count Primes 题解
Leetcode problem-204 Count Primes
Count the number of prime numbers less than a non-negative number, n.
题解:这道题如果对每个小于n的数都进行判断是否为素数并计数会超时,因此采用筛法来解这题。建一个数组,从2开始, 把其倍数小于N的都删掉。
class Solution { public: int countPrimes(int n) { vector<int>arr(n,1); int sum=0; for(int i=2;i<=n;i++) { if(arr[i]==1) { sum++; for(int j=i;j<n;j+=i) { arr[j]=0; } }
} return sum; } }; |
Leetcode problem-204 Count Primes 题解
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。