leetcode 204. Count Primes
Posted StrongYaYa
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode 204. Count Primes相关的知识,希望对你有一定的参考价值。
题目描述
注意:1既不是素数也不是合数
可以通过标记的方法找到所有非素数。
class Solution { public: int countPrimes(int n) { int *tmp = new int[n]; memset(tmp,0,sizeof(int)*n); int count = 0; for(int i = 2; i < n ; i++){ if(tmp[i] == 0){ count ++; for(int j = 2; j*i < n; j++) tmp[i*j]=1; } } return count; } };
以上是关于leetcode 204. Count Primes的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode----204. Count Primes(Java)