File tree 2 files changed +47
-0
lines changed
2 files changed +47
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ // The Computer Language Shootout
3
+ // http://shootout.alioth.debian.org/
4
+ // Precedent C entry modified by bearophile for speed and size, 31 Jan 2006
5
+ // Converted to C++ by Paul Kitchin
6
+
7
+ #include < iomanip>
8
+ #include < iostream>
9
+ #include < sstream>
10
+ #include < vector>
11
+
12
+ void nsieve (std::size_t max) {
13
+ std::vector<bool > flags (max,false );
14
+ std::size_t count = 0 ;
15
+ for (std::size_t value = 2 ; value < max; ++value) {
16
+ if (!flags[value]) {
17
+ ++count;
18
+ for (std::size_t multiple = value * 2 ; multiple < max;
19
+ multiple += value) {
20
+ flags[multiple] = true ;
21
+ }
22
+ }
23
+ }
24
+ std::cout << " Primes up to " << std::setw (8 ) << max << ' ' << std::setw (8 )
25
+ << count << ' \n ' ;
26
+ }
27
+
28
+ int main (int argc, char **argv) {
29
+ if (argc != 2 ) {
30
+ std::cerr << " usage: " << argv[0 ] << " <n>\n " ;
31
+ return 1 ;
32
+ }
33
+ unsigned int count;
34
+ {
35
+ std::istringstream convertor (argv[1 ]);
36
+ if (!(convertor >> count) || !convertor.eof ()) {
37
+ std::cerr << " usage: " << argv[0 ] << " <n>\n " ;
38
+ std::cerr << " \t n must be an integer\n " ;
39
+ return 1 ;
40
+ }
41
+ }
42
+ for (std::size_t i = 0 ; i < 3 ; ++i) {
43
+ nsieve (10000 << (count - i));
44
+ }
45
+ }
46
+
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ problems:
18
18
- name : nsieve
19
19
source :
20
20
- 1.cpp
21
+ - 3.cpp
21
22
compiler_version_command :
22
23
compiler_version_regex :
23
24
runtime_version_parameter :
You can’t perform that action at this time.
0 commit comments