Uses of Interface
com.irurueta.sorting.ComparatorAndAverager
-
Uses of ComparatorAndAverager in com.irurueta.sorting
Methods in com.irurueta.sorting with parameters of type ComparatorAndAveragerModifier and TypeMethodDescriptionSorter.median
(T[] array, int fromIndex, int toIndex, ComparatorAndAverager<T> comparator) Computes median of provided array.Sorter.median
(T[] array, ComparatorAndAverager<T> comparator) Computes median of provided array Median is computed by selecting the length / 2 element, hence provided array is modified upon execution of this method containing sorted element at location length / 2, smaller unsorted elements at array[0] ...