Question: Please implement all 3 sortings methods in java so the code would work. You can't modify the code that's already written. import java.util.Arrays; class Main
Please implement all 3 sortings methods in java so the code would work. You can't modify the code that's already written.

import java.util.Arrays; class Main { public static void main(String[] args) { System.out.println("Let's learn how to sort!"); int[] testSelectionData = {1, 5, 2, 4, 6, 3}; int[] testInsertionData = {1, 5, 2, 4, 6, 3}; int[] testBubbleData = {1, 5, 2, 4, 6, 3}; int[] testsortedData = {1, 2, 3, 4, 5, 6}; selectionSort(testSelectionData); System.out.println("Selection Sort Result: " + Arrays.equals(testSelectionData, testsortedData)); insertionSort(testInsertionData); System.out.println("Insertion Sort Result: " + Arrays.equals(testInsertionData, testsortedData)); bubbleSort(testBubbleData); System.out.println("Bubble Sort Result: " + Arrays.equals(testBubbleData, testsortedData)); // Use me to help debug - I will print a given array public static void printArray(int[] inputArray) { for (int i = 0; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
