Algorithms
QuickSort (qsort) Algorithm
Overview The quicksort algorithm was discovered by Tony Hoare in 1959. This algorithm is considered one of the fastest sorting algorithms and shows the best results in most cases. Here is the algorithm visualization. Below I will describe how it works. The algorithm works on the “divide and conquer” principle. Read more…