Quick Select
Quick select often comes up when the question asks for the first/last K elements or the Kth largest/smallest element
Last updated
Quick select often comes up when the question asks for the first/last K elements or the Kth largest/smallest element
Last updated
Best/Average: can guaranteed by shuffling the array
Worst: if sorted
Arrange largest elements in front by inverting the pivot comparison. This is a common problem type that tests if you know exactly how the partitioning algorithm works.
Easier to implement