Course Solutions Uncategorized (Solved) : Ascending Descending Order Code Selection Insertion Sort Public Static Void Selectionsort Q31763987 . . . .

(Solved) : Ascending Descending Order Code Selection Insertion Sort Public Static Void Selectionsort Q31763987 . . . .

 

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

OR

PayPal Gateway not configured

OR

PayPal Gateway not configured

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post