What is the ascending and descending order code for Selectionand Insertion Sort?
public static void selectionSort(double[] list) {
for (int i = 0; i < list.length – 1; i++){
// Find the minimum in thelist[i..list.length-1]
double currentMin = list[i];
int currentMinIndex = i;
for (int j = i + 1; j <list.length; j++) {
if (currentMin >list[j]) {
currentMin =list[j];
currentMinIndex = j;
}
}
// Swap list[i] withlist[currentMinIndex] if necessary;
if (currentMinIndex != i) {
list[currentMinIndex] =list[i];
list[i] =currentMin;
}
}
}
}
public static void insertionSort(double[] list) {
for (int i = 1; i < list.length; i++) {
/** insert list[i] into a
PayPal Gateway not configured
PayPal Gateway not configured