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…

上一篇:实现简单的信息无缝滚动(移动端)


下一篇:彻底解决Asp.netCore WebApi 3.1 跨域时的预检查204 options重复请求的问题