Comparison sorting algorithms normally evaluate 2x elements at each step (and do something different if the first element is smaller/bigger than or equal to the second element.)
What are some examples of sorting algorithms, preferably stable ones, where more than 2x elements can be compared at each step?
How would their performance be evaluated?
For sorting 2 elements at a time, a comparison sort cannot perform better than O(n log n)
on average, what's the performance limit for sorting 3, 4, 5+ elements at a time?
Any n-element at a time (for a specified fixed n) comparisons can be emulated by a series of some fixed number of 2-element at a time comparisons. If you could do better than
O(n log n)
on n-at-a-time, it would automatically give you a better thanO(n log n)
algorithm for 2-at-a-time.