Skip to content

In our previous post, we talked about radix sort in combination with count sort, which is faster than the standard std::sort algorithm.

Looking at the original algorithm, it is possible to optimize it more.

Our quest for faster sorting continues.

...continue reading "Squeezing the Last Bit: Sorting integers on CPU O(n)"

The sorting problem is treated as a basic problem.

We usually study this topic when we are taking our first steps in the world of programming.

I come through this post to review this issue with a practical approach related to sort numbers using the radixsort, bucketsort and countingsort algorithm.

...continue reading "Fast Sort for Numbers O(n)"