-
Notifications
You must be signed in to change notification settings - Fork 0
/
goldbachs_geeks_using _binary.cpp
79 lines (64 loc) · 2.03 KB
/
goldbachs_geeks_using _binary.cpp
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
// C++ program to implement Goldbach's conjecture
#include<bits/stdc++.h>
using namespace std;
const int MAX = 10000;
// Array to store all prime less than and equal to 10^6
vector <int> primes;
// Utility function for Sieve of Sundaram
void sieveSundaram()
{
// In general Sieve of Sundaram, produces primes smaller
// than (2*x + 2) for a number given number x. Since
// we want primes smaller than MAX, we reduce MAX to half
// This array is used to separate numbers of the form
// i + j + 2*i*j from others where 1 <= i <= j
bool marked[MAX/2 + 100] = {0};
// Main logic of Sundaram. Mark all numbers which
// do not generate prime number by doing 2*i+1
for (int i=1; i<=(sqrt(MAX)-1)/2; i++)
for (int j=(i*(i+1))<<1; j<=MAX/2; j=j+2*i+1)
marked[j] = true;
// Since 2 is a prime number
primes.push_back(2);
// Print other primes. Remaining primes are of the
// form 2*i + 1 such that marked[i] is false.
for (int i=1; i<=MAX/2; i++)
if (marked[i] == false)
primes.push_back(2*i + 1);
}
// Function to perform Goldbach's conjecture
void findPrimes(int n)
{
// Return if number is not even or less than 3
if (n<=2 || n%2 != 0)
{
cout << "Invalid Input \n";
return;
}
// Check only upto half of number
for (int i=0 ; primes[i] <= n/2; i++)
{
// find difference by subtracting current prime from n
int diff = n - primes[i];
// Search if the difference is also a prime number
if (binary_search(primes.begin(), primes.end(), diff))
{
// Express as a sum of primes
cout << primes[i] << " + " << diff << " = "
<< n << endl;
return;
}
}
}
// Driver code
int main()
{
// Finding all prime numbers before limit
sieveSundaram();
// Express number as a sum of two primes
findPrimes(101);
//findPrimes(1000000000000002);
//findPrimes(100000000000000);
//findPrimes(100000000000);
return 0;
}