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

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

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

Example:

Input: 10Output: 4Explanation: There are 4 prime numbers less than 10, they are 2, 3, 5, 7.

难度:easy

题目:统计小于非负整数n的所有素数。

思路:参考素数筛选法。

Runtime: 11 ms, faster than 94.69% of Java online submissions for Count Primes.

Memory Usage: 35.9 MB, less than 21.43% of Java online submissions for Count Primes.

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

转载地址:http://hrhgx.baihongyu.com/

你可能感兴趣的文章
信息的传递 认识自身5
查看>>
Apache将整合Google Wave功能
查看>>
PowerDesigner 的简单使用(逻辑模型转物理模型和生成sql语句)
查看>>
H凹变换—lhMorpHConcave
查看>>
通配符 与 正则表达式
查看>>
mochiweb 源码阅读(十五)
查看>>
JavaScript中的内置对象--Number对象
查看>>
10 个方便的创建 CSS 特效的工具
查看>>
把二元查找树转变成排序的双向链表
查看>>
Eclipse调试Bug的七种常用技巧
查看>>
Msys/MinGW与Cygwin/GCC(转)
查看>>
添加一个关闭ProgressDialog的静态方法:
查看>>
lightmap工具
查看>>
python访问Hive配置 - jmydream的专栏 - 博客频道 - CSDN.NET
查看>>
HDU 4419 Colourful Rectangle 第37届ACM/ICPC 杭州赛区网络赛 1010题 (线段树)
查看>>
win32 窗体开发主要流程
查看>>
超炫的iphone应用UI/UX设计赏析
查看>>
WinForm中的简单打印
查看>>
Oracle Financials AR产品功能介绍之应收账款
查看>>
第42周星期三
查看>>