Class FloatComparators
java.lang.Object
com.github.tommyettinger.ds.support.sort.FloatComparators
A class providing static methods and objects that do useful things with
comparators.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static classA type-specific comparator mimicking the natural order.protected static classprotected static classA type-specific comparator mimicking the opposite of the natural order.protected static class -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final FloatComparatorstatic final FloatComparatorstatic final FloatComparatorA FloatComparator using ascending order with a tolerance for equality of 0.000001. -
Method Summary
Modifier and TypeMethodDescriptionstatic FloatComparatorasFloatComparator(Comparator<? super Float> c) Returns a type-specific comparator that is equivalent to the given comparator.static FloatComparatorReturns a comparator representing the opposite order of the given comparator.static voidsort(float[] items, int from, int to, FloatComparator c) Sorts the specified range of elements according to the order induced by the specified comparator using mergesort.static voidsort(float[] items, FloatComparator c) Sorts all ofitemsby simply callingsort(float[], int, int, FloatComparator), settingfromandtoso the whole array is sorted.static FloatComparatortolerantComparator(float tolerance) Builds a new FloatComparator, using ascending order with a tolerance for equality oftolerance.
-
Field Details
-
NATURAL_COMPARATOR
-
OPPOSITE_COMPARATOR
-
TOLERANT_COMPARATOR
A FloatComparator using ascending order with a tolerance for equality of 0.000001.
-
-
Method Details
-
oppositeComparator
Returns a comparator representing the opposite order of the given comparator.- Parameters:
c- a comparator.- Returns:
- a comparator representing the opposite order of
c.
-
asFloatComparator
Returns a type-specific comparator that is equivalent to the given comparator.- Parameters:
c- a comparator, ornull.- Returns:
- a type-specific comparator representing the order of
c.
-
tolerantComparator
Builds a new FloatComparator, using ascending order with a tolerance for equality oftolerance. You can call itsFloatComparator.reversed()method to access a descending-order comparator.- Parameters:
tolerance- how much tolerance is acceptable when comparing two floats as equal- Returns:
- the new FloatComparator
-
sort
Sorts all ofitemsby simply callingsort(float[], int, int, FloatComparator), settingfromandtoso the whole array is sorted.- Parameters:
items- the float array to be sortedc- a FloatComparator to alter the sort order; if null, the natural order will be used
-
sort
Sorts the specified range of elements according to the order induced by the specified comparator using mergesort.This sort is guaranteed to be stable: equal elements will not be reordered as a result of the sort. The sorting algorithm is an in-place mergesort that is significantly slower than a standard mergesort, as its running time is O(n (log n)2), but it does not allocate additional memory; as a result, it can be used as a generic sorting algorithm.
If and only if
cis null, this will delegate toArrays.sort(float[], int, int), which does not have the same guarantees regarding allocation.- Parameters:
items- the float array to be sortedfrom- the index of the first element (inclusive) to be sorted.to- the index of the last element (exclusive) to be sorted.c- a FloatComparator to alter the sort order; if null, the natural order will be used
-