Class ByteComparators
java.lang.Object
com.github.tommyettinger.ds.support.sort.ByteComparators
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 classA type-specific comparator that compares items in the natural order, but as if they are unsigned (so, all negative items are greater than any non-negative items).protected static classA type-specific comparator that compares items in the opposite of the natural order, but as if they are unsigned. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ByteComparatorstatic final ByteComparatorstatic final ByteComparatorstatic final ByteComparator -
Method Summary
Modifier and TypeMethodDescriptionstatic ByteComparatorasByteComparator(Comparator<? super Byte> c) Returns a type-specific comparator that is equivalent to the given comparator.static ByteComparatorReturns a comparator representing the opposite order of the given comparator.static voidsort(byte[] items, int from, int to, ByteComparator c) Sorts the specified range of elements according to the order induced by the specified comparator using mergesort.static voidsort(byte[] items, ByteComparator c) Sorts all ofitemsby simply callingsort(byte[], int, int, ByteComparator), settingfromandtoso the whole array is sorted.
-
Field Details
-
NATURAL_COMPARATOR
-
OPPOSITE_COMPARATOR
-
UNSIGNED_COMPARATOR
-
UNSIGNED_OPPOSITE_COMPARATOR
-
-
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.
-
asByteComparator
Returns a type-specific comparator that is equivalent to the given comparator.- Parameters:
c- a Comparator of Byte values.- Returns:
- a type-specific comparator representing the order of
c.
-
sort
Sorts all ofitemsby simply callingsort(byte[], int, int, ByteComparator), settingfromandtoso the whole array is sorted.- Parameters:
items- the byte array to be sortedc- a ByteComparator 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(byte[], int, int), which does not have the same guarantees regarding allocation.- Parameters:
items- the byte 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 ByteComparator to alter the sort order; if null, the natural order will be used
-