首页 > 代码库 > 【LeetCode】204. Count Primes 解题小结
【LeetCode】204. Count Primes 解题小结
题目:
Description:
Count the number of prime numbers less than a non-negative number, n.
这个题目有提示,计算素数的方法应该不用多说。
class Solution {public: int countPrimes(int n) { vector<bool> isPrime; for (int i = 0; i < n; ++i){ isPrime.push_back(true); } for (int i = 2; i*i < n; ++i){ if(!isPrime[i]) continue; for (int j = i*i; j < n; j+=i){ isPrime[j] = false; } } int cnt = 0; for (int i = 2; i < n; ++i){ if (isPrime[i]) cnt++; } return cnt; }};
【LeetCode】204. Count Primes 解题小结
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。