import java.util.*; class QuickSort6 // Destructive quick sort on a random array of integers // (using temporary arrays). // Timed but not printed { public static void main(String[] args) throws Exception { Random rand = new Random(); long time1,time2; Scanner input = new Scanner(System.in); System.out.print("Enter the number of numbers: "); int num = input.nextInt(); System.out.print("Enter the highest number: "); int high = input.nextInt(); Integer[] a = new Integer[num]; for(int i=0; i1) { Integer pivot = a[0]; int count=0; for(int i=0; i