博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
204. Count Primes
阅读量:5175 次
发布时间:2019-06-13

本文共 3136 字,大约阅读时间需要 10 分钟。

题目:

Description:

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

Credits:

Special thanks to  for adding this problem and creating all test cases.

 

Hide Tags
   
 

链接: 

题解:

求小于n素数。正好前几天PKU的Java课上讲到埃式筛法,一下就想到了它。先建立一个数组,假定所有大于1小于n的数都mark为素数。之后从第一个素数2开始,mark这个素数的倍数为非素数。注意边界。时间复杂度等于(n/2+n/3+n/5...+n/比n小的最大素数) = n*(小于n的所有素数倒数的和) = O(n * log(logn))

Time Complexity - O(nloglogn), Space Complexity - O(n)。                                 

public class Solution {    public int countPrimes(int n) {        if(n < 2)            return 0;        boolean[] dp = new boolean[n];        Arrays.fill(dp, 2, n, true);        int result = n - 2;                for(int i = 2; i * i < n; i++){            if(dp[i]){                                       //if i is a prime                for(int j = i; i * j < n; j++){                    if(dp[i * j]){                           //then i * j is not a prime, set dp[i * j] to false                        dp[i * j] = false;                        result--;                    }                }            }        }                return result;    }}

 

Update:

注意Arrays.fill假如给定start index和end index的话是前闭后开区间。

sieve of eratosthenes

public class Solution {    public int countPrimes(int n) {        if(n < 2)            return 0;        boolean[] isPrime = new boolean[n];        Arrays.fill(isPrime, 2, n, true);        int result = n - 2;                for(int i = 2; i * i < n; i++) {            if(isPrime[i]) {                for(int j = i; i * j < n; j++) {                    if(isPrime[i * j]) {                        isPrime[i * j] = false;                        result--;                        }                }            }        }                return result;    }}

 

二刷: 

依然使用 Sieve of Eratosthenes。要注意题目说的是比n小的质数,所以我们只需要建立一个size n的数组就可以了。

Java:

Time Complexity - O(nloglogn), Space Complexity - O(n)

public class Solution {    public int countPrimes(int n) {        if (n < 3) {            return 0;        }        boolean[] isPrime = new boolean[n];        Arrays.fill(isPrime, 2, n, true);        int res = n - 2;    // no 0 and 1        for (int i = 2; i * i < n; i++) {            if (isPrime[i]) {                for (int j = i; j * i < n; j++) {                    if (isPrime[i * j]) {                        isPrime[i * j] = false;                        res--;                    }                }            }        }        return res;    }}

 

三刷:

Java:

public class Solution {    public int countPrimes(int n) {        if (n < 3) return 0;        boolean[] nums = new boolean[n];        Arrays.fill(nums, 2, n, true);        int count = n - 2;                for (int i = 2; i * i < n; i++) {            if (nums[i]) {                for (int j = i; i * j < n; j++) {                    if (nums[i * j]) {                        nums[i * j] = false;                        count--;                    }                    }            }        }                return count;    }}

 

 

Reference:

http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes 

https://leetcode.com/discuss/81779/12-ms-java-solution-modified-from-the-hint-method-beats-99-95%25

转载于:https://www.cnblogs.com/yrbbest/p/4493544.html

你可能感兴趣的文章
2016腾讯全球合作伙伴大会马化腾《给合作伙伴的一封信》
查看>>
Effective JavaScript Item 38 调用父类的构造函数在子类的构造函数
查看>>
Android 开发新方向 Android Wear ——概述
查看>>
固定浮窗的实现代码【转载】
查看>>
C#Windows的HelloWorld
查看>>
Xcode清除缓存、清理多余证书
查看>>
weblogic 优化设置 http://wenku.baidu.com/view/c42e7a5bbe23482fb4da4cf2.html
查看>>
.net 获取 虚拟目录名字
查看>>
BZOJ 入门OJ 2006: [Noip模拟题]七天使的通讯
查看>>
linux下使用g++编译cpp工程
查看>>
JAVA详细运行过程及与平台无关性
查看>>
jsonp跨域总结
查看>>
c#设计模式之观察者模式(Observer Pattern)
查看>>
数论——质数筛法
查看>>
创建sum求多元素的和
查看>>
onchange 、oninput 区别&remove、empty
查看>>
UILabel的常见用法
查看>>
用户线程和内核线程的区别
查看>>
Java异常超详细总结
查看>>
Core Data 编程指南
查看>>