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

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

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.

 

Approach #1: C++.

class Solution {public:    int countPrimes(int n) {        vector
matrix(n+5, 1); helper(n, matrix); int ans = 0; if (n <= 1) return 0; for (int j = 2; j < n; ++j) if (matrix[j] == 1) ans++; return ans; } void helper(int n, vector
& matrix) { for (int i = 2; i*i < n; ++i) { if (matrix[i] == 1) for (int j = i+i; j <= n; j += i) { matrix[j] = 0; } } }};

  

Approach #2: Java.

class Solution {    public int countPrimes(int n) {        boolean[] notPrime = new boolean[n];        int count = 0;        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;    }}

  

Approach #3: Python.

class Solution:    def countPrimes(self, n):        """        :type n: int        :rtype: int        """        if n < 3:            return 0        primes = [True] * n        primes[0] = primes[1] = False        for i in range(2, int(n**0.5)+1):            if primes[i]:                primes[i*i : n : i] = [False] * len(primes[i*i : n : i])        return sum(primes)

  

Time Submitted Status Runtime Language
a few seconds ago 240 ms python3
3 minutes ago 20 ms java
7 minutes ago 24 ms cpp

 

转载于:https://www.cnblogs.com/ruruozhenhao/p/9954489.html

你可能感兴趣的文章
optionMenu-普通菜单使用
查看>>
2016-2017-2点集拓扑作业[本科生上课时]讲解视频
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
执行了的程序,才是你的程序.
查看>>
struts2.x + Tiles2.x读取多个xml 配置文件
查看>>
表单校验之datatype
查看>>
python第六篇文件处理类型
查看>>
ubuntu16系统磁盘空间/dev/vda1占用满的问题
查看>>
grid网格布局
查看>>
JSP常用标签
查看>>
九涯的第一次
查看>>
处理器管理与进程调度
查看>>
向量非零元素个数_向量范数详解+代码实现
查看>>
java if 用法详解_Java编程中的条件判断之if语句的用法详解
查看>>
matlab sin函数 fft,matlab的fft函数的使用教程
查看>>
mysql adddate()函数
查看>>
mysql sin() 函数
查看>>
单片机复位电路
查看>>