much implementation, ready for first test
This commit is contained in:
14
Sorting/QuickSorter.java
Normal file
14
Sorting/QuickSorter.java
Normal file
@@ -0,0 +1,14 @@
|
||||
package Sorting;
|
||||
|
||||
public class QuickSorter extends Sorter{
|
||||
|
||||
public QuickSorter(String filename){
|
||||
super("quick", filename);
|
||||
System.out.println("This is stub code, to be removed");
|
||||
}
|
||||
|
||||
void sort(){
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user