sound.musicg.math.quicksort.QuickSortIndexPreserved Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of etyllica Show documentation
Show all versions of etyllica Show documentation
A game engine made in pure java.
package sound.musicg.math.quicksort;
public class QuickSortIndexPreserved {
private QuickSort quickSort;
public QuickSortIndexPreserved(int[] array){
quickSort=new QuickSortInteger(array);
}
public QuickSortIndexPreserved(double[] array){
quickSort=new QuickSortDouble(array);
}
public QuickSortIndexPreserved(short[] array){
quickSort=new QuickSortShort(array);
}
public int[] getSortIndexes(){
return quickSort.getSortIndexes();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy