Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

0. Introduction. A prime number is a positive integer with exactly two distinct divisors: 1 and itself. The Sieve of Eratosthenes (pronounced Era-TOSS-the-knees ) is

0. Introduction.

A prime number is a positive integer with exactly two distinct divisors: 1 and itself. The Sieve of Eratosthenes (pronounced Era-TOSS-the-knees) is an algorithm for finding prime numbers. Its named after a Greek mathematician of the Third Century BCE. In this lab assignment, you will implement the Sieve as a Java class, and use an instance of that class to print a list of prime numbers.

1. Theory.

The Sieve algorithm finds prime numbers between 2 and some positive integer n. Unlike other prime number algorithms, it doesnt need square roots, multiplication, or division. It works in the following way.

Make an empty set.

Add integers 2, 3, ..., n to the set.

Visit each integer in the set. After you visit an integer, remove all other integers from the set that are multiples of that integer. For example, after you visit the integer 2, you remove the integers 4, 6, 8, etc.

The integers left in the set are primes.

For example, suppose you want to find the prime numbers between 2 and 25. You start with the following set of numbers.

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

When you visit the integer 2 (its underlined), you remove all other integers that are multiples of 2 (they turn gray), so the set looks like this.

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

Then you visit 3, removing integers that are multiples of 3.

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

And you visit 5, removing integers that are multiples of 5.

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

The Sieve algorithm continues in this way, visiting multiples of 7, 11, 13, etc., all the way up to 25. However, there are no more primes in the set after you visit 5, so you can stop the example here. The numbers that remain in the set are primes. You can represent a set of integers that can range from 0 to n1 as an array of n boolean values. Each boolean value is either true or false. An integer k is in the set if the element at index k is true. It is not in the set if the element at index k is false.

2. Implementation.

You must write a class called Sieve that has the following methods, with the same names that are shown here.

Sieve(int max)

This is the constructor. It must make an array called numbers. The arrays length must be max and its elements must be booleans. If max is less than 2, then throw anIllegalArgumentException. Set the elements at indexes 0 and 1 of numbers to false. Set all the other elements of numbers to true. The array numbers represents a set of integers that will be tested for primality. Initially, 0 and 1 are not in the set, because you know they cannot be prime. However, all the other numbers, from 2 to max 1, are still in the set, because you do not know yet if they are prime.

findPrimes()

Perform the Sieve algorithm described in the theory section. You must visit each boolean element of numbers. If you visit an element that is false, then you must do nothing. However, suppose that you visit an element that is true, at index i. Then you must visit all the other elements of numbers whose indexes are multiples of i, setting those elements to false.

toString()

Start with an empty string. Visit each boolean element in numbers. If the element is true, then add its index to the string, followed by a blank. If the element is false, then do nothing. The indexes in the string are the prime numbers found by the Sieve algorithm. Return the string.

As a matter of style, never write B == true or B == false where B is a boolean expression. The expression B == true always has the same value as B. The expression B == false can be better written as !B.

3. Tests.

class Driver { // MAIN. Find some primes. public static void main(String [] args) { Sieve sieve = null; // We must initialize SIEVE or Java will cry. // 5 points. This must print "Sieve size must be at least 2." but without the // quotes. try { sieve = new Sieve(0); } catch (IllegalArgumentException oops) { System.out.println("Sieve size must be at least 2."); } // 5 points. This must print nothing. try { sieve = new Sieve(100); } catch (IllegalArgumentException oops) { System.out.println("Sieve size must be at least 2."); } // 10 points. This must print integers from 2 to 99, separated by blanks. System.out.println(sieve); // 10 points. This must print the prime numbers between 2 and 99, separated by // blanks. They are: // // 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 83 89 97 sieve.findPrimes(); System.out.println(sieve); } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions

Question

What is polarization? Describe it with examples.

Answered: 1 week ago

Question

2. Define identity.

Answered: 1 week ago

Question

1. Identify three communication approaches to identity.

Answered: 1 week ago

Question

4. Describe phases of majority identity development.

Answered: 1 week ago