MyExperimentsWithJava

Collection of different java problems, techniques and tutorials

View on GitHub

Quick Sort

Quick sort is somewhat similar to Merge Sort in that it is also a Divide and Conquer Algorithm. But unlike merge sort where we recursively split the array in two halves, the split part of quicksort has some logic.

Here are the key steps for quicksort :