Sort program using an ArrayList instead of an ordinary array. Instead of swapping, use ArrayLists remove and

Question:

Sort program using an ArrayList instead of an ordinary array. Instead of swapping, use ArrayList’s remove and add methods. Using nested for loops in the sort method makes the indexOfNextSmallest and swap methods unnecessary. In the following method skeleton, replace with appropriate code.

public static void sort(ArrayList list) { int indexNextSmallest; int nextSmallest; for (int i=0; i

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Question Posted: