巧解数学问题 质数

Count the number of prime numbers less than a non-negative number, n.
Example 1:
Input: n = 10
Output: 4
Explanation: There are 4 prime numbers less than 10, they are 2, 3, 5, 7.
Example 2:
Input: n = 0
Output: 0
Example 3:
Input: n = 1
Output: 0
Constraints:
0 <= n <= 5 * 106

超时了

class Solution {
public:
    int countPrimes(int n) {
        int res = 0;
        if(n <= 2)
            return res;
        for(int i = 2; i < n; i++){
            int flag = 0;
            for(int j = 2; j*j <= i; j++){
                if(i % j == 0){
                    flag = 1;
                    break;
                }
            }
            if(!flag)
                res++;
        }
        return res;
    }
};

另一种方法是从2到n遍历,把其中质数的倍数标为合数,最后剩下的就是质数了。

class Solution {
public:
    int countPrimes(int n) {
        if(n <= 2)
            return 0;
        vector<int> primes(n, true);
        int count = n - 2; //0-n-1一共n个数,先去掉0和1
        for(int i = 2; i < n; i++){
            if(primes[i]){
                for(int j = 2*i; j < n; j += i){
                    if(primes[j]){//count别减重了
                        primes[j] = false;
                        count --;
                    }
                }
            }
        }
        return count;
    }
};

优化一下,跳过偶数

class Solution {
public:
    int countPrimes(int n) {
        if(n <= 2)
            return 0;
        vector<int> primes(n, true);
        int i = 3, count = n/2;
        while(i*i < n){
            for(int j = i*i; j < n; j += 2*i)//这里直接从i*i开始而不是3*i开始是因为3*i在3那一轮已经遍历过了,每个i从自己平方开始就行
            {
                if(primes[j]){
                    primes[j] = false;
                    count--;
                }
            }
            do{
                i += 2;//跳过偶数
            }while(i*i < n && !primes[i]);//跳过合数,避免重复遍历
        }
        return count;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值