forked from jainaman224/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sieve_Of_Eratosthenes.go
43 lines (37 loc) · 1009 Bytes
/
Sieve_Of_Eratosthenes.go
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
package main
import(
"fmt"
)
func SieveOfEratosthenes(n int) {
// Create a boolean array "prime[0..n]" and initialize
// all entries it as true. A value in prime[i] will
// finally be false if i is Not a prime, else true.
prime := make([]bool, n+1)
//initialise prime array with true
for i := range(prime){prime[i] = true}
for p:=2; p*p <=n; p++ {
// If prime[p] is not changed, then it is a prime
if prime[p] == true {
// Update all multiples of p
for i := p*2; i <= n; i += p {
prime[i] = false
}
}
}
// Print all prime numbers
for p:= 2; p <= n; p++ {
if prime[p] {
fmt.Printf("%d ", p)
}
}
}
// Driver Function
func main(){
var n int= 30
fmt.Printf("Following are the prime numbers smaller than or equal to %d \n", n)
SieveOfEratosthenes(n)
}
/*
Following are the prime numbers smaller than or equal to 30
2 3 5 7 11 13 17 19 23 29
*/