Introduction to Bucket Sort
Bucket sort is a very useful sorting algorithm when working with floating point numbers. (Reading time: under 3 minutes)
We'll cover the following...
We store the values in buckets, which we then sort using insertion sort, and merge.
...