Uses of Class
pl.put.poznan.transformer.logic.SortAlgorithm.Order
-
Packages that use SortAlgorithm.Order Package Description pl.put.poznan.transformer.logic -
-
Uses of SortAlgorithm.Order in pl.put.poznan.transformer.logic
Methods in pl.put.poznan.transformer.logic that return SortAlgorithm.Order Modifier and Type Method Description static SortAlgorithm.OrderSortAlgorithm.Order. valueOf(String name)Returns the enum constant of this type with the specified name.static SortAlgorithm.Order[]SortAlgorithm.Order. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in pl.put.poznan.transformer.logic with parameters of type SortAlgorithm.Order Modifier and Type Method Description static booleanSorter. countingSort(int[] tab, SortAlgorithm.Order order)A simple implementation of the counting sort algorithm This implementation only works for 1-D arrays of integers.List<Result>Measurer. measure(Cell[][] data, int column, List<String> names, int maxIter, SortAlgorithm.Order order)Method for running tests for different sorting algorithms.booleanQuickSort. quickSort(Cell[][] tab, int column, int start, int end, int maxDepth, SortAlgorithm.Order order)An in-place implementation of the quicksort algorithmbooleanBinaryInsertSort. sort(Cell[][] tab, int column, int maxIter, SortAlgorithm.Order order)An in-place implementation of the binary insertion sort algorithmbooleanBubbleSort. sort(Cell[][] tab, int column, int maxIter, SortAlgorithm.Order order)An in-place implementation of the bubble sort algorithmbooleanInsertSort. sort(Cell[][] tab, int column, int maxIter, SortAlgorithm.Order order)An in-place implementation of the insertion sort algorithmbooleanMergeSort. sort(Cell[][] tab, int column, int maxIter, SortAlgorithm.Order order)A wrapper forMergeSort.mergeSort(Cell[][], int, int, int, int, Order)compatible with theSortAlgorithminterface.booleanQuickSort. sort(Cell[][] tab, int column, int maxIter, SortAlgorithm.Order order)A wrapper forQuickSort.quickSort(Cell[][], int, int, int, int, Order)compatible with theSortAlgorithminterface.booleanSelectionSort. sort(Cell[][] tab, int column, int maxIter, SortAlgorithm.Order order)An in-place implementation of the selection sort algorithmbooleanSortAlgorithm. sort(Cell[][] tab, int column, int maxIter, SortAlgorithm.Order order)Method stub for the main sorting methods ofSortAlgorithmimplementations.booleanSorter. sort(Cell[][] tab, int column, int maxIter, SortAlgorithm.Order order)Wrapper to callSortAlgorithm.sort(Cell[][], int, int, Order)of the currently chosenSortAlgorithm.
-