Partial sorting: Difference between revisions

Content deleted Content added
No edit summary
Harlanh (talk | contribs)
add link to implementation in the Julia programming language, following C++ and Python examples.
Line 48:
* 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/stable/stdlib/sort/#Sorting-Algorithms-1 PartialQuickSort]</code> implementation.
 
== See also ==