Tagged Questions

5
votes
8answers
3k views

Finding prime numbers with the Sieve of Eratosthenes (Originally: Is there a better way to prepare this array?)

Note: Version 2, below, uses the Sieve of Eratosthenes. There are several answers that helped with what I originally asked. I have chosen the Sieve of Eratosthenes method, implemented it, and ...
3
votes
4answers
539 views

Sieve of Eratosthenes in Java: A Problem, and some optimization

I did a quick implementation of the SoE algo in Java (code at the end). The output on my dual core AMD processor is: Allocation: 31 Meat: 10140 Listing: 10171 Preparing end: ...
2
votes
3answers
1k views

Sieve of Eratosthenes problem: handling really big numbers

I'm solving Sphere's Online Judge Prime Generator using the Sieve of Eratosthenes. My code works for the test case provided. But.. as the problem clearly states: The input begins with the number ...
1
vote
2answers
148 views

Sieve of Erathostenes ArrayIndexOutOfBounds

trying to implement a simple sieve of erathosthenes to solve this question on project euler : The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17. Find the sum of all the primes below two ...
-1
votes
2answers
126 views

How to get table size 2^32 in java

I have to get in java protected final static int [] SIEVE = new int [ 1 << 32 ]; But i cant force java to that. Max sieve what i get is 2^26 i need 2^32 to end my homework. I tried with ...