LeetCode中Count Primes的java实现

来源:互联网 发布:java web项目开发案例 编辑:程序博客网 时间:2024/06/02 09:49

题目如下:

Description:

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

一开始用的方法入下,结果运算时间太大

public class Solution {
    public int countPrimes(int n) {
       boolean mark = true;
int count=0;
for(int i=2;i<n;i++)
{
for(int m=2; m<=Math.sqrt(i);m++ )
{
mark = true;
if(i%m==0)
{
mark =false;
break;
}
}
if(mark)
{
count++;
}
}
return count;
    }
}

后来改成如下写法,通过

public class Solution {

public int countPrimes1(int n)
{
boolean bool[] = new boolean[n];
         if (n <= 2) return 0;
         int counter = n-2;
         int j = 0;
         for (int i = 2; i <= Math.floor(Math.sqrt(n)); i++) {
                         j = i + i;
                         if (!bool[i]) 
                         {
                        while (j < n) {
                                   if (!bool[j]) {
                                   bool[j] = true;
                                   counter --;
                                                 }
                                   j = j + i;
                                         }
                         }
         }
         return counter;
}

0 0
原创粉丝点击