An open API service indexing awesome lists of open source software.

https://github.com/63rabbits/quickselect

Select the k-th small (large) data from the set of n elements.
https://github.com/63rabbits/quickselect

quick-select

Last synced: about 1 year ago
JSON representation

Select the k-th small (large) data from the set of n elements.

Awesome Lists containing this project

README

          

# QuickSelect

Select the k-th small (large) data from the set of n elements.
This is in-place algorithm.

Time complexity : $O(n)$