We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
algocpp::algorithm::stalin_sort
Perform Stalin sort on std::vector, etc.
std::vector
Assuming the number of elements to be $N$, approximately $O(N)$
#include <iostream> #include <vector> #include <algocpp/algorithm.hpp> #include <algocpp/io.hpp> using namespace std; int main() { vector<int> A = {1, 3, 3, 5, 4, 7, 1, 9}; // [1, 3, 3, 5, 7, 9] cout << algocpp::algorithm::stalin_sort(A, false) << endl; // [1, 3, 5, 7, 9] cout << algocpp::algorithm::stalin_sort(A, true) << endl; }