Question: The bubble sort algorithm shown in Chapter 1 8 is less efficient than it could be . If a pass is made through the list
The bubble sort algorithm shown in Chapter is less efficient than it could be If a pass is made through the list without exchanging any elements, the list is sorted and there is no reason to continue. Create a copy of the bubbleSort method called bubbleSort that implements this algorithm so that is will stop as soon as it recognizes that the list is sorted. Do not use a break statement! Include outputs of the array for both sorts for each pass through the array so you can demonstrate that the code is working correctly. The driver should test both methods with a random set of integers and an already sorted set of integers.
Hint: You have to introduce a swapflag that is set true if a swap occurs on a given pass. Replace the outer for loop with a while loop that tests the swapflag and takes care of index counting within the loop.
Hint: Remember that arrays are passed by reference in Java. Use Arrays.copyOf or a similar method to test each sort method on the exact same data content in separate arrays
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
