15 lines
379 B
Java
15 lines
379 B
Java
package Sorting;
|
|
|
|
/**
|
|
* This class contains the main method and presents an interface for the user to
|
|
* compare sorting algorithm efficiencies. The user will be able to generate files
|
|
* of random numbers, and to select a set of algorithms to test on a file of random
|
|
* numbers.
|
|
*/
|
|
public class AlgorithmTester{
|
|
|
|
public static void main(String[] args) {
|
|
|
|
}
|
|
|
|
} |