Fixing some data types and class declarations
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
package Sorting;
|
package Sorting;
|
||||||
|
|
||||||
public class BubbleSorter extends sorter{
|
public class BubbleSorter extends Sorter{
|
||||||
//a class to sort arrays of numbers using bubble sort
|
//a class to sort arrays of numbers using bubble sort
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
package Sorting;
|
package Sorting;
|
||||||
|
|
||||||
public class InsertionSorter extends sorter{
|
public class InsertionSorter extends Sorter{
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
package Sorting;
|
package Sorting;
|
||||||
|
|
||||||
|
import java.time.Duration;
|
||||||
/**
|
/**
|
||||||
* This is a class to hold the efficiencty results of a sorter. We will use this
|
* This is a class to hold the efficiencty results of a sorter. We will use this
|
||||||
* because we can only have one return value from a method, but want to get more
|
* because we can only have one return value from a method, but want to get more
|
||||||
|
|||||||
Reference in New Issue
Block a user