kth Order Statistic

An algorithm seeks to find the kthk^{th} order statistic of a statistical sample, which is the kthk^{th}-smallest value in a list or array.

Parameters

  • nn: size of list

Related Problems


Filters

Computational Model

Randomization

Approximation

Algorithms Table

Displaying 3 of 3 algorithms

See more
Hoare's Selection Algorithm (QuickSelect)1961O(n2)O(n^2)O(1)O(1)
Naive Selection1940O(nlogn)O(n \log n)O(1)O(1)
Hashing1940O(n)O(n)O(n)O(n)

Reductions Table

Insuffient Data to display table

Other relevant algorithms

Insuffient Data to display table