Package org.terrier.sorting
Class SortAscendingQuintupleVectors
- java.lang.Object
-
- org.terrier.sorting.SortAscendingQuintupleVectors
-
public class SortAscendingQuintupleVectors extends java.lang.Object
This class sorts five arrays, where the corresponding entries are related. The result is that the first array is sorted in ascending order, and the rest are transformed in a way that the corresponding entries are in the correct places.- Author:
- Douglas Johnson
-
-
Constructor Summary
Constructors Constructor Description SortAscendingQuintupleVectors()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static void
sort(int[] a, int[] u, int[] e, int[] o, int[] f)
Sorts the five vectors with respect to the ascending order of the first one.
-
-
-
Method Detail
-
sort
public static void sort(int[] a, int[] u, int[] e, int[] o, int[] f)
Sorts the five vectors with respect to the ascending order of the first one.- Parameters:
a
- the first vector to sort.u
- the second vector to sort.e
- the third vector to sort.o
- the fourth vector to sort.f
- the fifth vector to sort.
-
-