The Comparison Lower Bound
Know
Any sort based on comparisons needs at least n log n comparisons in the worst case, because it must distinguish every possible ordering.
Apply
Use the bound to recognise when an algorithm claiming to beat it must be exploiting key structure.
Watch out
Believing a comparison sort can be linear in general. Only non-comparison methods escape the bound.
Study move
Explain why the bound follows from the number of possible orderings.
