码迷,mamicode.com
首页 > 其他好文 > 详细

204. Count Primes

时间:2016-10-08 19:23:23      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/Machelsky/p/5939450.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!