-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprint-all-primes-till-input-number.cpp
More file actions
141 lines (107 loc) · 3.01 KB
/
Copy pathprint-all-primes-till-input-number.cpp
File metadata and controls
141 lines (107 loc) · 3.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
#include<bits/stdc++.h>
using namespace std;
/*
Below is a further optimized implementation of a iterative function to check if an input number is prime
Time complexity: theta( sq. root(n) )
Space complexity: theta(1)
Auxiliary space: theta(1)
*/
bool prime_number_check(int n)
{
if(n==1)
return false;
if(n==2 || n==3)
return true;
if(n%2==0 || n%3==0)
return false;
for(int i=5;i*i<=n;i=i+6)
{
if( n%i==0 || n%(i+2)==0 )
return false;
}
return true;
}
/*
Below is a function to print all the primes till a given input
Time complexity: theta( n * sq. root(n) ) or theta( n^(3/2) )
Space complexity: theta(1)
Auxiliary space: theta(1)
*/
void print_all_primes_till_input_naive(int n)
{
for(int i=2;i<=n;i++)
if(prime_number_check(i)==true)
cout<<i<<" ";
}
/*
Below is a function to print all the primes till a given input using the Sieve of Eratosthenes algorithm
Time complexity: theta(n log log n)
Space complexity: theta(n)
Auxiliary space: theta(n)
*/
void sieve_of_eratosthenes_simple(int n)
{
vector<bool> isPrime(n+1, true);
// We don't care about the values stored in isPrime[0] and isPrime[1]
for(int i=2;i*i<=n;i++)
{
if(isPrime[i]==true)
for(int j=2*i;j<=n;j=j+i)
isPrime[j]=false;
}
// Now that only the prime indices of the vector are marked true, we can print them
// The composite indices of the vector are marked false
for(int i=2;i<=n;i++)
if(isPrime[i]==true)
cout<<i<<" ";
}
/*
Below is a function to print all the primes till a given input using the Sieve of Eratosthenes algorithm
Time complexity: theta(n log log n)
Space complexity: theta(n)
Auxiliary space: theta(n)
*/
void sieve_of_eratosthenes_optimized(int n)
{
vector<bool> isPrime(n+1, true);
// We don't care about the values stored in isPrime[0] and isPrime[1]
for(int i=2;i*i<=n;i++)
{
if(isPrime[i]==true)
for(int j=i*i;j<=n;j=j+i)
isPrime[j]=false;
}
// Now that only the prime indices of the vector are marked true, we can print them
// The composite indices of the vector are marked false
for(int i=2;i<=n;i++)
if(isPrime[i]==true)
cout<<i<<" ";
}
/*
Below is a function to print all the primes till a given input using the Sieve of Eratosthenes algorithm
Time complexity: theta(n log log n)
Space complexity: theta(n)
Auxiliary space: theta(n)
*/
void sieve_of_eratosthenes_optimized_shorter(int n)
{
vector<bool> isPrime(n+1, true);
// We don't care about the values stored in isPrime[0] and isPrime[1]
for(int i=2;i<=n;i++)
{
if(isPrime[i]==true)
{
cout<<i<<" ";
for(int j=i*i;j<=n;j=j+i)
isPrime[j]=false;
}
}
}
int main()
{
int n;
cout<<"Enter a natural number: ";
cin>>n;
sieve_of_eratosthenes_optimized_shorter(n);
return 0;
}