204. Count Primes
Posted Machelsky
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了204. Count Primes相关的知识,希望对你有一定的参考价值。
Description:
Count the number of prime numbers less than a non-negative number, n.
刷了一周的python, 希望明天把blackjack和最后的游戏做出来。
思路:
比较巧妙,用inner loop从头开始mark不是prime的位置,然后输出false的个数。
public class Solution { public int countPrimes(int n) { boolean[] check=new boolean[n]; int count=0; for(int i=2;i<n;i++) { if(check[i]==false) { count++; } for(int j=2;i*j<n;j++) { check[i*j]=true; } } return count; } }
以上是关于204. Count Primes的主要内容,如果未能解决你的问题,请参考以下文章