mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
647 B
17 lines
647 B
5 months ago
|
public class ExerciseRunner {
|
||
|
public static void main(String[] args) {
|
||
|
int[] array = {64, 34, 25, 12, 22, 11, 90};
|
||
|
|
||
|
// Test BubbleSort
|
||
|
Sorter bubbleSorter = new BubbleSort();
|
||
|
bubbleSorter.setArray(array.clone());
|
||
|
bubbleSorter.sort();
|
||
|
System.out.println("BubbleSorted array: " + Arrays.toString(bubbleSorter.getArray()));
|
||
|
|
||
|
// Test InsertionSort
|
||
|
Sorter insertionSorter = new InsertionSort();
|
||
|
insertionSorter.setArray(array.clone());
|
||
|
insertionSorter.sort();
|
||
|
System.out.println("InsertionSorted array: " + Arrays.toString(insertionSorter.getArray()));
|
||
|
}
|
||
|
}
|