码迷,mamicode.com
首页 > 其他好文 > 详细

【LeetCode】204. Count Primes 解题小结

时间:2016-09-11 10:19:35      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

 题目:

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 解题小结

标签:

原文地址:http://www.cnblogs.com/Doctengineer/p/5861089.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!