Šimon Tóth’s Post

View profile for Šimon Tóth

C++ Educational Content Creator | 20 years of Software Engineering experience distilled into digestible daily posts

The std::partial_sort_copy is an unusual sorting algorithm. It doesn't require the source range to be random-access while providing O(n*logk) runtime complexity. The algorithm will "copy" the top k elements to the output range (which is required to be random access) in sorted order. The sorting isn't stable, i.e. it does not maintain the order of equal elements. Both C++17 parallel and C++20 range versions are available. Compiler Explorer link: https://lnkd.in/eYuevJtd #cpp #cplusplus #coding #programming #dailybiteofcpp

  • text

To view or add a comment, sign in

Explore content categories