24package umontreal.ssj.util.multidimsort;
69 public void sort(T[] a,
int iMin,
int iMax);
87 public void sort(
double[][] a,
int iMin,
int iMax);
94 public void sort(
double[][] a);
This interface is meant to be implemented by certain multivariate sorting algorithms that sort object...
void sort(double[][] a)
Same as above, but sorts the entire array.
void sort(T[] a, int iMin, int iMax)
Sorts the subarray of a made of the elements with indices from iMin to iMax-1.
void sort(T[] a)
Sorts the entire array a.
int dimension()
Returns the number of dimensions used in the sort.
void sort(double[][] a, int iMin, int iMax)
Sorts the subarray of a made of the elements with indices from iMin to iMax-1, using the natural orde...