I'm supposed to build different variations of quicksort, I have implemented some so far but I don't understand one variant. Here:
QuicksortFixedPivotInsertion fixed pivot with cut-off to insertion sort at k. Instead of stopping the recursion when the sub array only has at most one element, implement a version where sub arrays that contain at most k elements are sorted with insertion sort. k can be decided by experimentation.
What do I do?