int |
Cell.compareTo(Cell c) |
An override method to compare this Cell to another.
|
List<Result> |
Measurer.measure(Cell[][] data,
int column,
List<String> names) |
Deprecated.
|
List<Result> |
Measurer.measure(Cell[][] data,
int column,
List<String> names,
int maxIter,
SortAlgorithm.Order order) |
Method for running tests for different sorting algorithms.
|
boolean |
QuickSort.quickSort(Cell[][] tab,
int column,
int start,
int end,
int maxDepth,
SortAlgorithm.Order order) |
|
void |
Scrambler.scramble(Cell[][] data,
int column,
Scrambler.ScrambleType scrambleType) |
Lightweight scrambling method.
|
boolean |
BinaryInsertSort.sort(Cell[][] tab,
int column,
int maxIter,
SortAlgorithm.Order order) |
|
boolean |
BubbleSort.sort(Cell[][] tab,
int column,
int maxIter,
SortAlgorithm.Order order) |
|
boolean |
InsertSort.sort(Cell[][] tab,
int column,
int maxIter,
SortAlgorithm.Order order) |
|
boolean |
MergeSort.sort(Cell[][] tab,
int column,
int maxIter,
SortAlgorithm.Order order) |
A wrapper for MergeSort.mergeSort(Cell[][], int, int, int, int, Order) compatible with the SortAlgorithm interface.
|
boolean |
QuickSort.sort(Cell[][] tab,
int column,
int maxIter,
SortAlgorithm.Order order) |
|
boolean |
SelectionSort.sort(Cell[][] tab,
int column,
int maxIter,
SortAlgorithm.Order order) |
|
boolean |
SortAlgorithm.sort(Cell[][] tab,
int column,
int maxIter,
SortAlgorithm.Order order) |
Method stub for the main sorting methods of SortAlgorithm implementations.
|
boolean |
Sorter.sort(Cell[][] tab,
int column,
int maxIter,
SortAlgorithm.Order order) |
|