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