std :: map :: key_comp()是C++ STL中的一个内置函数,该函数返回容器使用的比较对象的副本。默认情况下,这是一个less对象,其返回值与运算符'<‘相同。是一个函数指针或函数对象,它接受两个与容器元素类型相同的参数,并且如果按照定义的严格弱顺序将第一个参数认为在第二个参数之前,则返回true或否则返回false。两个键被视为等效如果key_comp自反地返回false(即,无论键作为参数传递的顺序)。
句法:
key_compare map_name.key_comp();
参数:该函数不接受任何参数。
返回值:该函数返回容器使用的比较对象的副本。
以下示例说明了map :: key_comp()方法:
程序1:
// C++ program to illustrate the
// map::key_comp() function
#include
using namespace std;
int main()
{
// Creating a map named m;
map m;
map::key_compare
comp
= m.key_comp();
// Inserting elements into map
m['a'] = 10;
m['b'] = 20;
m['c'] = 30;
m['d'] = 40;
cout << "Map has the elements\n";
// Store key value of last element
char l = m.rbegin()->first;
// initializing the iterator
map::iterator it = m.begin();
// printing elements of all map
do {
cout << it->first
<< " => "
<< it->second
<< '\n';
} while (comp((*it++).first, l));
return 0;
}
输出:
Map has the elements
a => 10
b => 20
c => 30
d => 40
程式2:
// C++ program to illustrate the
// map::key_comp() function
#include
using namespace std;
int main()
{
// Creating a map named m;
map m;
map::key_compare
comp
= m.key_comp();
// Inserting elements into map
m['a'] = 1;
m['b'] = 2;
m['c'] = 3;
m['d'] = 4;
cout << "Map has the elements\n";
// Store key value of last element
char l = m.rbegin()->first;
// initializing the iterator
map::iterator it = m.begin();
// printing elements of all map
do {
cout << it->first
<< " => "
<< it->second
<< '\n';
} while (comp((*it++).first, l));
return 0;
}
输出:
Map has the elements
a => 1
b => 2
c => 3
d => 4
想要从精选的最佳视频中学习并解决问题,请查看有关从基础到高级C++的C++基础课程以及有关语言和STL的C++ STL课程。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。