Question: The Shell sort is a variation of the bubble sort. Instead of comparing adjacent values, the Shell sort adapts a concept from the binary search

The Shell sort is a variation of the bubble sort. Instead of comparing adjacent values, the Shell sort adapts a concept from the binary search to determine a gap across which values are compared before any swap takes place. In the first pass, the gap is half the size of the array. For each subsequent pass, the gap size is cut in half. For the final pass(es), the gap size is 1, so it would be the same as a bubble sort. The passes continue until no swaps occur.

Below is the same set of values as per the bubble sort example in Chapter 18 (p. 681), showing the first pass of the Shell sort:The Shell sort is a variation of the bubble sort. Instead of

The pseudo-code for the Shell sort is as follows:

comparing adjacent values, the Shell sort adapts a concept from the binary

  1. Create a class called ShellArray. It should create and populate an array of random integers based on a size supplied to the constructor. Implement the Shell sort as a method of this class. Create a driver class to instantiate and sort several different arrays of different sizes.

    Hint: Implement a toString method for the ShellArray class, so it is easy to output the results of each swap to demonstrate that your algorithm is working correctly.

Do the whole question in java language.

9 6 8 12 3 1 7 -- size of array is 7, so gap would be 3 9 6 8 12 3 1 7 -- 9 and 12 are already in order, so no swap A - - - LA 9 6 8 12 3 1 7 -- 6 and 3 are not in order, so swap - - - - LA ! 1 9 12 6 1 7 CO num( 3 + gap] swap num [s] with num (3 + gap] swapflag = true end-if end-for end-do gap = gap / 2 end-do

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!