-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathptopot.c
More file actions
248 lines (142 loc) · 4.45 KB
/
ptopot.c
File metadata and controls
248 lines (142 loc) · 4.45 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
// Calculate Primes set at given limit and show it as sum of geometrical set powers of two
// PTOPOT - PRIME TO POWERS OF TWO
// Author: MARTE.BEST - Sylwester Bogusiak aka Sylvi91
// This is free code
// There is no warranty or guarantee of any kind.
// To Compile:
// gcc -o ptopot ptopot.c -lm
// Usage:
// ./ptopot 1000
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <math.h>
#ifdef __APPLE__
#include <mach/mach_time.h>
#else
#include <time.h>
#endif
#define Phi 1.618033988749895
#define BITS 8
#define PIECES 7
// Check whether x is a prime or not
unsigned long long ifnotPrime(char prime[], unsigned long long x)
{
return (prime[x/BITS] & (1 << ((x >> 1) & PIECES) ) );
}
// Set the appropriate bit
unsigned long long makeComposite(char prime[], unsigned long long x)
{
prime[x/BITS] |= (1 << ((x >> 1) & PIECES)); /// ok for test fast ok
return 0;
}
// Returns the powers of two
unsigned long long int* primeToPot(unsigned long long int a, int *len){
int arrayLen=0;
unsigned long long i=1;
while (i<a){
arrayLen++;
i*=2;
}
*len=arrayLen;
unsigned long long int *bits;
bits=(unsigned long long int*)malloc(arrayLen*sizeof(unsigned long long int));
arrayLen--;
i=0;
while(a>0){
bits[arrayLen]=a&1;
if(bits[arrayLen] != 0)
{
bits[arrayLen] = pow(2,i);
}
i++;
arrayLen--;
a>>=1;
}
return bits;
}
////////////////////////////////////////////
int calc(unsigned long long int limit)
{
unsigned long long i,j,k;
int len = 32;
unsigned long long int * bits;
int a;
if (limit>=3)
{
printf("________________________________________________________________________\n");
printf("____________THAT APP IS CALCULATING THE PRIME NUMBERS SET_______________\n");
printf("_____UP TO THE GIVEN LIMIT AND DISPLAYS IT AS SET OF POWERS OF TWO______\n");
printf("_____________Author: Sylwester B aka Sylvi91____________________________\n");
printf("________________________________________________________________________\n");
printf("_______________Please wait for primes generator. Warning!_______________\n");
printf("___For argument greater than 1000000000 this may take couple minutes.___\n");
printf("______________Bigger limit consume more and more memory.________________\n");
printf("________________________________________________________________________\n");
char * prime;
prime = (char*) malloc(sizeof(char)*limit/BITS); // memory allocaion
if (prime==NULL) exit (1);
memset(prime, 0, sizeof(prime)); // init
// Eratosthenes Sieve
for (i = 3; i * i <= limit; i += 2) {
if (!ifnotPrime(prime, i))
for ( j = i * i, k = i << 1; j < limit; j += k)
makeComposite(prime, j);
}
// print primes
printf(" 2, ");
for (int i = 3; i <= limit; i += 2)
if (!ifnotPrime(prime, i))
{
printf("%d, ", i);
}
printf("\n");
// Print primes and powers of two
printf(" 2 2\n");
for (i=3;i<=limit;i+=2) /// main loop
{
if (!ifnotPrime(prime, i)) /// prime or not
{
bits = primeToPot(i,&len);
printf(" %llu ", i); /// wypisz jak chcesz
for (a=0;a<len;a++)
{
printf(" %llu ", bits[a]); /// wypisz jak chcesz
};
printf("\n");
}
}
free(prime); // zwolnij pamiec
}
return 0;
}
int main(int argc, char * argv[]) {
unsigned long long int i;
if (argc <= 1)
{
printf ("Usage: %s <limit of integers>\n", argv[0]);
return 1;
}
i = atoll(argv[1]);
assert(i >= 1);
// Get system time START
#ifdef __APPLE__
uint64_t start = mach_absolute_time();
#else
clock_t start = clock();
#endif
calc(i); // Change the argument i to adjust the limit of integers
// Get system time END
#ifdef __APPLE__
uint64_t end = mach_absolute_time();
mach_timebase_info_data_t timebase_info;
mach_timebase_info(&timebase_info);
long double diff = (end - start) * timebase_info.numer / timebase_info.denom; // nano sec
printf("Your calculations took %.3Lf seconds to run.\n", diff / 1e9 );
#else
clock_t end = clock();
printf("Your calculations took %.3Lf seconds to run.\n", (long double)(end - start) / CLOCKS_PER_SEC );
#endif
return 0;
}