Stooge Sort: An Un-popular sorting Algorithm

less than 1 minute read

Published:

Stooge sort is a sorting algorithm, used to sort a linear array having n number of elements. What it does is, recursively sorts the partitions of the array of 2/3rd size, and after sorting each partition, the complete array gets sorted. It is not much efficient algorithm, but this algorithm can help to get a better understanding of recursion.


This article is published on Medium.
Do check here