其他分享
首页 > 其他分享> > LeetCode 204.计数质数

LeetCode 204.计数质数

作者:互联网

统计所有小于非负整数 n 的质数的数量。

class Solution {
public:
    int countPrimes(int n) {
        if(n < 2) return 0;
        vector<int> hash(n, 1);
        hash[0] = 0; hash[1] = 0;

        int pos = 2;
        while(pos < hash.size()){
            while(pos < hash.size() && !hash[pos]) pos++;
            int t = pos + pos;
            while(t < hash.size()){
                hash[t] = 0;
                t += pos;
            }
            pos++;
        }

        return count(hash.begin(), hash.end(), 1);
    }
};

厄拉多塞筛法:将2的倍数删掉剩余的第一个为3, 将3的倍数删除剩余的第一个为5, 将5的倍数删掉剩余的第一个为7…

标签:hash,204,int,质数,pos,while,倍数,LeetCode,size
来源: https://blog.csdn.net/Yi__123/article/details/115708785