This repository contains a Java program designed to implement the QuickSort algorithm for sorting arrays of random integers.
#Main idea:Select a pivot element and partition array into left and right halves #and recursively call quicksort on both the halves.