Adaptive heap sort: Difference between revisions

Content deleted Content added
external link heading
Edemaine (talk | contribs)
fix link
Line 1:
The '''adaptive heap sort''' is a [[sorting algorithm]] that is similar to [[heap sort]], but uses a randomized [[randomized binary search]] tree, or [[RBST]], to structure the input according to any preexisting order. The RBSTrandomized binary search tree is used to select candidates that are put into the heap, so the heap doesn't need to keep track of all elements.
 
==See also==