Adding stubs for class files to student project
This commit is contained in:
@@ -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.
|
||||
}
|
||||
|
||||
}
|
||||
5
Sorting/BubbleSorter.java
Normal file
5
Sorting/BubbleSorter.java
Normal file
@@ -0,0 +1,5 @@
|
||||
package Sorting;
|
||||
|
||||
public class BubbleSorter {
|
||||
|
||||
}
|
||||
7
Sorting/Sorter.java
Normal file
7
Sorting/Sorter.java
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user