首页 > 编程语言 >埃氏算法C++实现: 快速输出质数( 素数 )

埃氏算法C++实现: 快速输出质数( 素数 )

时间:2025-01-23 19:29:44浏览次数:3  
标签:prime 埃氏 int 质数 算法 C++ 素数 num primes

目录

1.简介

算法原理

算法特点

应用场景

2.一般求素数方法

3.埃氏算法求素数

3.1.无动态分配

3.2.有动态分配


1.简介

埃氏算法(Eratosthenes Sieve)‌,全称为埃拉托斯特尼筛法,是一种由古希腊数学家埃拉托斯特尼在公元前3世纪提出的古老而经典的算法,用于计算一定范围内的素数。其基本思想是通过从小到大遍历每个数字,并将其所有倍数标记为非质数,从而逐步排除所有非质数,最终得到所有的素数。‌

算法原理

埃氏筛法的基本原理是:要得到自然数n以内的全部素数,必须把不大于√n的所有素数的倍数剔除,剩下的就是素数。具体步骤如下:

  1. 初始化:创建一个布尔类型的数组(或列表),用于表示范围内的所有数字,初始时将所有元素标记为“true”,表示都是素数(或待检定的数)。
  2. 遍历与筛选:从2开始遍历数组中的每个数。如果当前数字被标记为素数(即为“true”),则进行下一步筛选操作;否则,跳过该数字。对于当前素数p,从p的平方开始,将p的倍数(如2p、3p、4p等)标记为非质数(即为“false”),因为p的所有小于p平方的倍数在之前的步骤中已经被更小的素数筛选过了。
  3. 重复操作:继续向后遍历,重复步骤2的筛选过程,直到遍历完整个范围。
  4. 输出结果:遍历结束后,所有未被标记为非质数(仍为“true”)的数字都是素数,将其输出即可。

算法特点

  1. 简单直观‌:埃氏筛法的原理简单易懂,实现起来也较为直接。
  2. 高效性‌:虽然算法的时间复杂度为O(nloglogn),但在实际应用中,它仍然是寻找一定范围内素数的高效方法之一。
  3. 历史悠久‌:作为一种古老的算法,埃氏筛法在数学史上占有重要地位,是素数研究的基础工具之一。

应用场景

埃氏筛法广泛应用于数论、密码学、计算机科学等领域,特别是在需要快速生成大量素数时,其高效性得到了充分体现。例如,在密码学中的RSA算法中,就需要生成大量的素数作为密钥的基础。

2.一般求素数方法

#include <iostream>
#include <cmath>

using namespace std;

bool is_prime(int num) {
    if (num <= 1) return false;
    if (num == 2) return true; // 2 is the only even prime number
    if (num % 2 == 0) return false; // other even numbers are not primes
    
    int sqrt_num = static_cast<int>(sqrt(num));
    for (int i = 3; i <= sqrt_num; i += 2) {
        if (num % i == 0) return false;
    }
    return true;
}

void find_primes_up_to(int n, int* primes, int& prime_count) {
    prime_count = 0;
    for (int i = 2; i <= n; ++i) {
        if (is_prime(i)) {
            primes[prime_count++] = i;
        }
    }
}

int main() {
    int n;
    cout << "Enter a number: ";
    cin >> n;
    
    // Assuming the maximum number of primes is n/2 (an overestimate)
    int* primes = new int[n / 2];
    int prime_count;
    
    find_primes_up_to(n, primes, prime_count);
    
    cout << "Prime numbers up to " << n << " are: ";
    for (int i = 0; i < prime_count; ++i) {
        cout << primes[i] << " ";
    }
    cout << endl;
    
    delete[] primes; // Free the allocated memory
    return 0;
}

3.埃氏算法求素数

3.1.无动态分配

#include <iostream>
#include <cmath>

using namespace std;

bool is_prime(int num) {
    if (num <= 1) return false;
    if (num == 2) return true; // 2 is the only even prime number
    if (num % 2 == 0) return false; // other even numbers are not primes
    
    int sqrt_num = static_cast<int>(sqrt(num));
    for (int i = 3; i <= sqrt_num; i += 2) {
        if (num % i == 0) return false;
    }
    return true;
}

void find_primes_up_to(int n, int primes[], int& prime_count) {
    prime_count = 0;
    for (int i = 2; i <= n; ++i) {
        if (is_prime(i)) {
            primes[prime_count++] = i;
        }
    }
}

int main() {
    int n;
    cout << "Enter a number: ";
    cin >> n;
    
    // Assuming the maximum number of primes is n/2 (an overestimate)
    int primes[n / 2];
    int prime_count;
    
    find_primes_up_to(n, primes, prime_count);
    
    cout << "Prime numbers up to " << n << " are: ";
    for (int i = 0; i < prime_count; ++i) {
        cout << primes[i] << " ";
    }
    cout << endl;
    
    return 0;
}

3.2.有动态分配

#include <iostream>
#include <cmath>

using namespace std;

bool is_prime(int num) {
    if (num <= 1) return false;
    if (num == 2) return true; // 2 is the only even prime number
    if (num % 2 == 0) return false; // other even numbers are not primes
    
    int sqrt_num = static_cast<int>(sqrt(num));
    for (int i = 3; i <= sqrt_num; i += 2) {
        if (num % i == 0) return false;
    }
    return true;
}

void find_primes_up_to(int n, int* primes, int& prime_count) {
    prime_count = 0;
    for (int i = 2; i <= n; ++i) {
        if (is_prime(i)) {
            primes[prime_count++] = i;
        }
    }
}

int main() {
    int n;
    cout << "Enter a number: ";
    cin >> n;
    
    // Assuming the maximum number of primes is n/2 (an overestimate)
    int* primes = new int[n / 2];
    int prime_count;
    
    find_primes_up_to(n, primes, prime_count);
    
    cout << "Prime numbers up to " << n << " are: ";
    for (int i = 0; i < prime_count; ++i) {
        cout << primes[i] << " ";
    }
    cout << endl;
    
    delete[] primes; // Free the allocated memory
    return 0;
}

标签:prime,埃氏,int,质数,算法,C++,素数,num,primes
From: https://blog.csdn.net/a_pjx_z/article/details/145267943

相关文章

  • c++专题一
    C++框架&输入输出#include<iostream>usingnamespacestd;//写了这个之后使用标准库组件前面就不用写std::intmain(){​return0;}输入std::cin>>x输出std::cout<<"helloworld"<<std::endl;//std::endl用来换行格式化输出:#include<iomanip>//用于控制输出......
  • ACM 寒假第一讲:C++ 基础
    1.A-LongLoongProblemStatementForapositiveintegerX,theDragonStringoflevelXisastringoflength(X+3)formedbyoneL,Xoccurrencesofo,onen,andonegarrangedinthisorder.YouaregivenapositiveintegerN.PrinttheDragonStrin......
  • C++模板全解析:场景与注意点揭秘!
    C++作为现代编程语言中的一种,其强大功能和复杂性使得它在系统编程、应用开发等领域广受欢迎。其中,模板(Template)是C++语言中一个极为重要且强大的特性,它不仅提高了代码的复用性,还使得类型无关的编程成为可能。本文将详细介绍C++模板的基础知识,包括其概念、分类、常见应用场景及......
  • C++中static和const的区别和用法
    在C++中,static和const是两个关键字,它们各自有不同的用途和语法。下面是它们的主要区别和用法:const关键字const关键字用于声明一个常量,即该变量的值在初始化后不能被修改。用法:局部变量:voidfunc(){constinta=10;//a是一个常量,值为10,不能在函数内部修改......
  • 第一讲C++
    第一题LongLoongForapositiveintegerX,theDragonStringoflevelXisastringoflength(X+3)formedbyoneL,Xoccurrencesofo,onen,andonegarrangedinthisorder.YouaregivenapositiveintegerN.PrinttheDragonStringoflevelN.Noteth......
  • c++迷宫问题(migong)
    今天的题目叫“迷宫问题(migong)”,是“DFS深度优先搜索递归”一类的。题目描述设有一个N*N(2<=N<10)方格的迷宫,入口和出口分别在左上角和右上角。迷宫格子中分别放0和1,0表示可通,1表示不能,入口和出口处肯定是0。迷宫走的规则如下所示:即从某点开始,有八个方向可走,前进方格中数......
  • c++瓷砖
    今天的题目叫“瓷砖”,是“DFS深度优先搜索递归”一类的。题目描述在一个w×h的矩形广场上,每一块1x1的地面都铺设了红色或黑色的瓷砖。小谢同学站在某一块黑色的瓷砖上,他可以从此处出发,移动到上、下、左、右四个相邻的且是黑色的瓷砖上。现在他想知道,通过重复上述移动所能......
  • 【基础】愤怒的奶牛 USACO c++
    描述FarmerJohn建造了一个有N(2<=N<=100,000)个隔间的牛棚,这些隔间分布在一条直线上,坐标是x1,…,xN(0<=xi<=1,000,000,000)。他的C(2<=C<=N)头牛不满于隔间的位置分布,它们为牛棚里其他的牛的存在而愤怒。为了防止牛之间的互相打斗,FarmerJohn想把这些牛安置在指定的隔间,所......
  • 打卡信奥刷题(651)用C++信奥P8396[普及组/提高] [CCC2022 S2] Good Groups
    [CCC2022S2]GoodGroups题目背景请注意:这道题是CCO2022J4GoodGroups的加强版。管理备注:似乎没有加强。题目描述一个班级会被分成ggg个组,每个组有三个人,这......
  • 详解类与对象——c++对象模型和this指针
    (^_^)一.成员变量和成员函数分开存储只有非静态成员变量才属于类的对象上classPerson{public:Person(){mA=0;}//非静态成员变量占对象空间intmA;//静态成员变量不占对象空间staticintmB;//函数也不占对......