Compute Sieve of Eratosthenes using java.util.Vector object

Problem:

The Sieve of Eratosthenes is an array of boolean elements whose ith element is true if and
only if i is a prime number. Use the following algorithm to compute and print a sieve of size
1000:
(Precondition: p is an array of n bits.)
(Postcondition: p[i] is true if and only if i is prime.)
You're required to used a java.util.Vector object.
1. Initialize p[0] and p[1] to be false, and all other p[i] to be true.
2. Repeat step 3 for each i from 3 to n, incrementing by 2.
3. If there is a prime the square root of i that divides i, set p[i] false.

Output:

Figure it out.

Solution:

public class TestSieve {
 private static final int SIZE=1000;
 private static Vector<Boolean> isPrime = new Vector<Boolean>(SIZE);
 public static void main(String[] args) {
 initializeSieve();
 printSieve();
 }
 private static void initializeSieve() {
 isPrime.add(false); // 0 is not prime
 isPrime.add(false); // 1 is not prime
 for (int i = 2; i < SIZE; i++) {
 isPrime.add(true);
 }
for (int n = 2; 2*n < SIZE; n++) {
 if ((isPrime.get(n))) {
 for (int m = n; m*n < SIZE; m++) {
 isPrime.set(m*n, false);
 }
 }
 }
 }
 private static void printSieve() {
 int n=0;
 for (int i = 0; i < SIZE; i++) {
 if (isPrime.get(i)) {
 System.out.printf("%5d%s", i, ++n%16==0?"\n":"");
 }
 }
 System.out.printf("%n%d primes less than %d%n", n, SIZE);
 }
}


2 comments :

  1. buy tiktok views Increase your exposure on social media! Check out our deals and buy Instagram Followers, Buy Youtube Subscribers, and more! Fast, cheap, and 24/7 Support.

    ReplyDelete
  2. ultrasonic liposuction Korea's #1 Liposculpture Clinic. Lydian plastic surgery is the home of VIP patients. Celebrities, Influencers and Diplomats all know and trust Doctor An and Lydian plastic surgery clinic to provide detailed results.

    ReplyDelete

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact