GitHub Viewer
package algorithms;
public class QuickSort{
private static int[] theArray;// try to delete static
private static int arraySize;
QuickSort(int newArraySize){
arraySize = newArraySize;
theArray = new int[arraySize];
getRandomArray();
}
public void quickSort(int p, int r){
if(p