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

[LeetCode]Count Primes

时间:2015-04-29 10:06:42      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:java   leetcode   

Description:

Count the number of prime numbers less than a non-negative number, n

click to show more hints.

Credits:
Special thanks to @mithmatt for adding this problem and creating all test cases.

判断某个数是否是质数,只要判断它是否除能整除于小于它的质数即可。

public class Solution {
	List<Integer> prime = new ArrayList<>();
    public int countPrimes(int n) {
        int res = 0;
        for(int i=2;i<n;i++){
        	if(isPrime(i)) res++;
        }
        return res;
    }
    
    private boolean isPrime(int n){
    	int m = (int) Math.sqrt(n);
    	if(n==1) return false;
    	for(int itt:prime){
    		if(itt>m) break;
    		if(n%itt==0) return false;
    	}
    	prime.add(n);
    	return true;
    }
}



[LeetCode]Count Primes

标签:java   leetcode   

原文地址:http://blog.csdn.net/guorudi/article/details/45342911

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