Partial sorting: Difference between revisions

Content deleted Content added
Screw0dog (talk | contribs)
m Language/library support: fixed and improved broken link to Julia documentation
Line 50:
* The [[C++]] standard specifies a library function called <code>[http://en.cppreference.com/w/cpp/algorithm/partial_sort std::partial_sort]</code>.
* The [[Python (programming language)|Python]] standard library includes functions <code>[https://docs.python.org/library/heapq.html#heapq.nlargest nlargest]</code> and <code>[https://docs.python.org/library/heapq.html#heapq.nsmallest nsmallest]</code> in its <code>heapq</code> module.
* The [[Julia_(programming_language)|Julia]] standard library includes a <code>[https://docs.julialang.org/en/stablev1/stdlibbase/sort/#Sorting-Algorithms-1Base.Sort.PartialQuickSort PartialQuickSort]</code> implementationalgorithm used in <code>[https://docs.julialang.org/en/v1/base/sort/#Base.Sort.partialsort! partialsort!]</code> and variants.
 
== See also ==