set::key_comp() is an inbuilt function in C++ STL which returns a copy of the comparison object used by the container. By default, this is a less object, which returns the same as operator ‘<'. This object determines the order of the elements in the container. It is a function pointer or a function object which takes two arguments of the same type as the container elements and returns true if the first argument is considered to go before the second in the strict weak ordering it defines or false otherwise. Two elements of a set are considered equivalent if key_comp returns false reflexively (i.e., no matter the order in which the elements are passed as arguments).
Syntax:
key_compare set_name.key_comp()
Parameters: This function does not accept any parameter.
Return value: The function returns a copy of the comparison object used by the container.
Program to demonstrate the above function:
#include <bits/stdc++.h>
using namespace std;
int main()
{
set< int > a;
set< int >::key_compare comp = a.key_comp();
for ( int i = 0; i <= 10; i++)
a.insert(i);
cout << "Set a has the numbers: " ;
int l = *a.rbegin();
set< int >::iterator it = a.begin();
do {
cout << *it << " " ;
} while (comp(*(++it), l));
return 0;
}
|
Output:
Set a has the numbers: 0 1 2 3 4 5 6 7 8 9
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
25 Jun, 2018
Like Article
Save Article