Is this prime generator inefficient C++? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T16:06:10Z http://stackoverflow.com/feeds/question/231381 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/231381/is-this-prime-generator-inefficient-c 1 Is this prime generator inefficient C++? Tomek 2008-10-23T20:32:01Z 2009-07-04T08:34:58Z <p>Is this seen as an in efficient prime number generator. It seems to me that this is pretty efficient. Is it the use of the stream that makes the program run slower?</p> <p>I am trying to submit this to <a href="http://www.spoj.pl/" rel="nofollow">SPOJ</a> and it tells me that my time limit exceeded... </p> <pre><code>#include &lt;iostream&gt; #include &lt;sstream&gt; using namespace std; int main() { int testCases, first, second, counter = 0; bool isPrime = true; stringstream out; cin &gt;&gt; testCases; for (int i = 0; i &lt; testCases; i++) { // get the next two numbers cin &gt;&gt; first &gt;&gt; second; if (first%2 == 0) first++; // find the prime numbers between the two given numbers for (int j = first; j &lt;= second; j+=2) { // go through and check if j is prime for (int k = 2; k &lt; j; k++) { if (j%k == 0) { isPrime = false; break; } } if (isPrime) { out &lt;&lt; j &lt;&lt; "\n"; } isPrime = true; } out &lt;&lt; "\n"; } cout &lt;&lt; out.str(); return 0; } </code></pre> <p>EDIT: The program is supposed to generate prime numbers between the numbers specified in the input. (See here for more details: <a href="http://www.spoj.pl/problems/PRIME1/" rel="nofollow">Prime Generator Problem</a> )</p> <p>-Tomek</p> http://stackoverflow.com/questions/231381/is-this-prime-generator-inefficient-c/231398#231398 10 Answer by Matt J for Is this prime generator inefficient C++? Matt J 2008-10-23T20:36:08Z 2008-10-23T20:36:08Z <p>This is one step (skipping even numbers) above the naive algorithm. I would suggest the <a href="http://en.wikipedia.org/wiki/Sieve_of_Eratosthenes" rel="nofollow">Sieve Of Eratosthenes</a> as a more efficient algorithm. From the above link:</p> <blockquote> <p>The complexity of the algorithm is O((nlogn)(loglogn)) with a memory requirement of O(n). The segmented version of the sieve of Eratosthenes, with basic optimizations such as wheel factorization, uses O(n) operations and O(n1 / 2loglogn / logn) bits of memory.</p> </blockquote> <p>The algorithm you give is somewhere near O(n^2). The speedup you get by skipping evens isn't that great because you would find an even number not to be prime on the first test. The sieve has a much greater memory requirement, but the runtime complexity is far superior for large <em>N</em>.</p> http://stackoverflow.com/questions/231381/is-this-prime-generator-inefficient-c/231400#231400 5 Answer by warren for Is this prime generator inefficient C++? warren 2008-10-23T20:36:48Z 2008-10-23T20:36:48Z <p>You're searching a <em>lot</em> more numbers than you have to - at most you only need to go to <code>&lt;= (sqrt(num))</code>.</p> http://stackoverflow.com/questions/231381/is-this-prime-generator-inefficient-c/231408#231408 0 Answer by jsl4980 for Is this prime generator inefficient C++? jsl4980 2008-10-23T20:38:19Z 2008-10-23T20:38:19Z <p>It can be made slightly more efficient. You don't need to start k at 2, you're already making sure not to test even numbers. So start k at 3.<br /> Then increment k by 2 every time because you don't need to test other even numbers. The most efficient way that I can think of is to only test if a number is divisible by known prime numbers (then when you find another one add that to the list you test with).</p> http://stackoverflow.com/questions/231381/is-this-prime-generator-inefficient-c/231421#231421 0 Answer by Austin Salonen for Is this prime generator inefficient C++? Austin Salonen 2008-10-23T20:40:43Z 2008-10-23T20:40:43Z <pre><code>for (int k = 2; k &lt; j; k++) { if (j%k == 0) { isPrime = false; break; } } </code></pre> <p>should be:</p> <pre><code>for(int k = 3; k &lt;= j/2; k+=2 ) { if( j % k == 0 ) break; } </code></pre> <p>j/2 really should be sqrt(j) but it is typically a good enough estimation.</p> http://stackoverflow.com/questions/231381/is-this-prime-generator-inefficient-c/235517#235517 1 Answer by ephemient for Is this prime generator inefficient C++? ephemient 2008-10-24T22:45:16Z 2008-10-24T22:45:16Z <p>Here's a simple Sieve of Eratosthenes. It doesn't require predeclaring a big boolean array, but it's still >>O(n) in time and space. As long as you have enough memory, though, it ought to be noticeably faster than what your present naïve method.</p> <pre><code>#include &lt;iostream&gt; #include &lt;map&gt; using namespace std; template&lt;typename T = int, typename M = map&lt;T, T&gt; &gt; class prime_iterator { public: prime_iterator() : current(2), skips() { skips[4] = 2; } T operator*() { return current; } prime_iterator &amp;operator++() { typename M::iterator i; while ((i = skips.find(++current)) != skips.end()) { T skip = i-&gt;second, next = current + skip; skips.erase(i); for (typename M::iterator j = skips.find(next); j != skips.end(); j = skips.find(next += skip)) {} skips[next] = skip; } skips[current * current] = current; return *this; } private: T current; M skips; }; int main() { prime_iterator&lt;int&gt; primes; for (; *primes &lt; 1000; ++primes) cout &lt;&lt; *primes &lt;&lt; endl; return 0; } </code></pre> <p>If this is still too slow for you, you may want to pursue the <a href="http://en.wikipedia.org/wiki/Sieve_of_Atkin" rel="nofollow">Sieve of Atkin</a>, an optimized Sieve of Eratosthenes.</p> <p>Actually, these are only relatively efficient if the range of primes to generate starts low. If the lower bound is already fairly large and the upper bound is not much larger than the lower, then the sieving methods are wasteful work and you'd be better off running a <a href="http://en.wikipedia.org/wiki/Primality_test" rel="nofollow">primality test</a>.</p> http://stackoverflow.com/questions/231381/is-this-prime-generator-inefficient-c/1081800#1081800 1 Answer by dpetek for Is this prime generator inefficient C++? dpetek 2009-07-04T08:34:58Z 2009-07-04T08:34:58Z <p>And one more thing, don't use sqrt(n) in a loop:</p> <pre><code>for(int k=1;k&lt;sqrt(n);++k) </code></pre> <p>If there's no good optimization , sqrt will be calculated in every iteration.</p> <p>Use</p> <pre><code>for (int k=1;k*k &lt; n;++k) </code></pre> <p>Or simply</p> <pre><code>int sq = sqrt ( n ); for (int k=1;k&lt;sq;++k) </code></pre>