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

204. Count Primes

时间:2018-10-20 13:45:22      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:turn   分析   技术分享   lse   mes   span   style   数组   int   

一、题目

  1、审题

技术分享图片

 

  2、分析

    统计 < n 的数字中质数的个数。

 

二、解答

  1、思路:

    方法一、

      采用一个大小为 n 的 bool 数组,标记非质数。

    public int countPrimes(int n) {
        
        int count = 0;
        boolean[] notPrime = new boolean[n];
        for (int i = 2; i < n; i++) {
            if(notPrime[i] == false) {
                count++;
                for (int j = 2; i * j < n; j++) 
                    notPrime[i * j] = true;
            }
        }
        return count;
    }
    

 

204. Count Primes

标签:turn   分析   技术分享   lse   mes   span   style   数组   int   

原文地址:https://www.cnblogs.com/skillking/p/9821314.html

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