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:
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
9 6 8 12 3 1 7 ‐‐ 6 and 3 are not in order, so swap
9 3 8 12 6 1 7 ‐‐ 8 and 1 are not in order, so swap
9 3 1 12 6 8 7 ‐‐ 12 and 7 are not in order, so swap
9 3 8 7 6 1 12 ‐‐ end of pass 1
The pseudo‐code for the Shell sort is as follows:
gap = size / 2
do until gap <= 0
swapflag = true
do until swapflag is false
swapflag = false
for s = 0 to size – gap
if num[s] > num[s + gap]
swap num[s] with num[s + gap]
swapflag = true
end‐if
end‐for
end‐do
gap = gap / 2
end‐do
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.
Step by Step Solution
3.54 Rating (157 Votes )
There are 3 Steps involved in it
Step: 1
ANSWER CODE package sort import javautilRandom public class ShellArray int ar Sh...Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started