Adding stubs for class files to student project

This commit is contained in:
2020-05-28 14:06:00 -05:00
parent bb9533f045
commit d1d6557bef
3 changed files with 13 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ package Sorting;
public class AlgorithmTester{
public static void main(String[] args) {
//This is where you will run the program to test your sorting algorithms.
}
}

View File

@@ -0,0 +1,5 @@
package Sorting;
public class BubbleSorter {
}

7
Sorting/Sorter.java Normal file
View File

@@ -0,0 +1,7 @@
package Sorting;
abstract class Sorter {
//This is an abstract class
//In this class you will write an abstract sort() method
//the method will be implemented by subclasses
}