std::partial_sort_copy in C++ Last Updated : 06 Aug, 2017 Comments Improve Suggest changes Like Article Like Report std::partial_sort is used for sorting the range within the entire container. So, if we want to keep the original container intact and just copy the sorted sub-part of the container into another one, then for that purpose, we can use std::partial_sort_copy. Just like std::partial_sort, partial_sort_copy() can be used in two ways as shown below: Comparing elements using <: Syntax: Template RandomAccessIterator partial_sort_copy (InputIterator first, InputIterator last, RandomAccessIterator result_first, RandomAccessIterator result_last); first: Input iterator to the first element in the container. last: Input iterator to the last element in the container. result_first: Random-Access iterator pointing to the initial position in the destination container. result_last: Random-Access iterator pointing to the final position in the destination container. Return Value: It returns an iterator pointing to the element that follows the last element written in the result sequence. CPP // C++ program to demonstrate the use of // std::partial_sort_copy #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { vector<int> v = { 1, 1, 3, 10, 3, 3, 7, 7, 8 }, v1(3); vector<int>::iterator ip; // Using std::partial_sort_copy std::partial_sort_copy(v.begin(), v.end(), v1.begin(), v1.end()); // Displaying the vector after applying // std::partial_sort_copy for (ip = v1.begin(); ip != v1.end(); ++ip) { cout << *ip << " "; } return 0; } Output: 1 1 3 Here, since, we declared v1 to be of size 3, so only three elements were stored in it. By comparing using a pre-defined function: Syntax: Template RandomAccessIterator partial_sort_copy (InputIterator first, InputIterator last, RandomAccessIterator result_first, RandomAccessIterator result_last, Compare comp); Here, first, last, result_first and result_last are the same as previous case. comp: Binary function that accepts two elements in the range as arguments, and returns a value convertible to bool. The value returned indicates whether the element passed as first argument is considered to go before the second in the specific strict weak ordering it defines. The function shall not modify any of its arguments. This can either be a function pointer or a function object. Return Value: It returns an iterator pointing to the element that follows the last element written in the result sequence. CPP // C++ program to demonstrate the use of // std::partial_sort_copy #include <iostream> #include <algorithm> #include <vector> using namespace std; // Defining the BinaryFunction bool comp(int a, int b) { return (a < b); } int main() { vector<int> v = { 1, 1, 3, 10, 3, 3, 7, 7, 8 }, v1(7); vector<int>::iterator ip; // Using std::partial_sort_copy std::partial_sort_copy(v.begin(), v.end(), v1.begin(), v1.end(), comp); // Displaying the vector after applying // std::partial_sort_copy for (ip = v1.begin(); ip != v1.end(); ++ip) { cout << *ip << " "; } return 0; } Output: 1 1 3 3 3 7 7 Where to use it ? For copying the sorted range: So, whenever we want the original container to remain unchanged after sorting and the resultant of partial_sort to be stored inside another container, then we can use this. CPP // C++ program to demonstrate the use of // std::partial_sort_copy #include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { vector<int> v = { 100, 45, 78, 23, 220 }, v1(5); vector<int>::iterator ip; // Using std::partial_sort_copy std::partial_sort_copy(v.begin(), v.end(), v1.begin(), v1.end()); // Displaying the vectors after applying // std::partial_sort_copy cout << "v = "; for (ip = v.begin(); ip != v.end(); ++ip) { cout << *ip << " "; } cout << "\nv1 = "; for (ip = v1.begin(); ip != v1.end(); ++ip) { cout << *ip << " "; } return 0; } Output: v = 100 45 78 23 220 v1 = 23 45 78 100 220 So, here v remained the same, and its sorted form is stored into v1. Comment More infoAdvertise with us Next Article std::partial_sort_copy in C++ M Mrigendra Singh Improve Article Tags : Misc C++ STL cpp-algorithm-library Practice Tags : CPPMiscSTL Similar Reads std::partial_sort in C++ std::sort is used for sorting the elements present within a container. One of the variants of this is std::partial_sort , which is used for sorting not the entire range, but only a sub-part of it. It rearranges the elements in the range [first, last), in such a way that the elements before middle ar 7 min read partition_copy in C++ STL partition_copy is the inbuilt function defined in <algorithm> library in STL. partition_copy function duplicates the partitioned elements into the various containers given in its parameters. It requires 5 arguments which are the beginning and ending position of the container, the beginning pos 4 min read std :: reverse_copy in C++ STL C++ STL provides a function that copies the elements from the given range but in reverse order. Below is a simple program to show the working of reverse_copy(). Examples: Input : 1 2 3 4 5 6 7 8 9 10 Output : The vector is: 10 9 8 7 6 5 4 3 2 1 The function takes three parameters. The first two are 2 min read is_sorted() in C++ STL In C++, is_sorted() is a built-in function used to check whether the element of the given range is sorted or not in ascending order. In this article, we will learn about is_sorted() function in C++.Letâs take a quick look at a simple example that illustrates is_sorted() method:C++#include <bits/s 4 min read sort() in C++ STL In C++, sort() is a built-in function used to sort the given range in desired order. It provides a simple and efficient way to sort the data in C++, but it only works on data structures that provide random access to its elements such as vectors and arrays.Let's take a look at an example:C++#include 4 min read Like