std :: multiset :: value_comp是C++ STL中的一个内置函数,它返回容器使用的比较对象的副本。默认情况下,这是一个less对象,它与运算符'<‘相同。函数指针或一个函数对象,它接受两个与容器元素类型相同的参数,并且如果按照定义的严格弱顺序将第一个参数认为在第二个参数之前,则返回true或否则返回false。如果key_comp是两个键,则视为等效自反地返回false(即,无论键作为参数传递的顺序如何)。
句法:
value_compare multiset_name.value_comp()
参数:该函数不接受任何参数。
返回值:该函数返回容器使用的比较对象的副本。
以下示例说明了上述方法:
范例1:
// C++ program to illustrate the
// multiset::value_comp() function
#include
using namespace std;
int main()
{
// Creating a multiset named m;
multiset m;
multiset::value_compare
comp
= m.value_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::value_comp() function
#include
using namespace std;
int main()
{
// Creating a multiset named m;
multiset m;
multiset::value_compare
comp
= m.value_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++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。