import java.util.*; public class quickSort{ static int partition(int[] arr, int low, int high){ int pivot = arr[low]; int i = low+1; int j = high; while(i<=j){ while(i<=high && arr[i]<=pivot) i++; while(arr[j]>pivot) j--; if(i