set :: value_comp()是cpp中的内置函数,该函数返回容器使用的比较对象的副本。该对象确定容器中元素的顺序。它是一个函数指针或一个函数对象,采用两个与容器元素相同类型的参数,如果按照定义的严格弱顺序将第一个参数认为在第二个参数之前,则返回true,否则返回false。如果value_comp自反地返回false(即,不管这些元素作为参数传递的顺序),则认为集合中的两个元素是等效的。
句法:
value_compare set_name.value_comp()
参数:该函数不接受任何参数。
返回值:该函数返回容器使用的比较对象的副本。
下面的程序说明了上述函数。
// CPP program to demonstrate the
// set::value_comp()
#include
using namespace std;
int main()
{
// initialising set a
set a;
set::value_compare comp = a.value_comp();
// inserting elements to set a
for (int i = 0; i <= 10; i++)
a.insert(i);
cout << "Set a has the numbers ";
// start stores value of the last element of set a
int start = *a.rbegin();
// initialising iterator it
set::iterator it = a.begin();
// Function that prints all the numbers in set
do {
std::cout << *it << " ";
} while (comp(*(++it), start));
std::cout << '\n';
return 0;
}
输出:
Set a has the numbers 0 1 2 3 4 5 6 7 8 9
要从最佳影片策划和实践问题去学习,检查了C++基础课程为基础,以先进的C++和C++ STL课程基础加上STL。要完成从学习语言到DS Algo等的更多准备工作,请参阅“完整面试准备课程” 。