C++ Set 中的 value_comp函数

首页 / C++入门教程 / C++ Set 中的 value_comp函数

C++ set value_comp()函数返回一个比较对象。此函数用于比较两个元素,以检查第一个元素的密钥是否在第二个元素之前。

它采用两个相同类型的参数,如果第一个参数根据较窄的弱阶在第二个参数之前,则返回true,否则返回false。

例如:-对于集合m,如果两个元素e1(k1,d1)和e2(k2,d2)是value_type类型的对象,其中k1和k2是它们的key_type和d1类型的键和d2是它们的类型为setped_type的数据,则m value_comp(e1,e2)等效于m key_comp(k1,k2)。

value_comp - 语法

value_compare value_comp() const;

Note: 存储的对象定义一个成员函数

bool-operator (value_type &left, value_type &right);

如果按排序顺序,左键的值在前面且不等于右键的值,则返回 true

value_comp - 返回值

它返回一个值比较函数对象。

value_comp - 例子1

让我们看一下比较元素值的简单示例:

#include <iostream>
#include <set>

using namespace std;

int main()
{
  set<int> c;
  set<int>::value_compare comp = c.value_comp();

  cout << "Compare 2 to 5 (1 is true and 0 is false): "<<comp(2, 5) << endl;
  cout << "Compare 8 to 5 (1 is true and 0 is false): "<<comp(8, 5) << endl;
}

输出:

Compare 2 to 5 (1 is true and 0 is false): 1
Compare 8 to 5 (1 is true and 0 is false): 0

在上面的示例中,comp(2,5)返回true是因为2小于5。而comp(8,5)返回false是因为8不小于5。

value_comp - 例子2

让我们看一个简单的例子:

#include <iostream>
#include <set>

using namespace std;

int main ()
{
  set<int> myset;

  set<int>::value_compare mycomp = myset.value_comp();

  for (int i=0; i<=5; i++) myset.insert(i);

  cout << "myset contains:";

  int highest=*myset.rbegin();
  set<int>::iterator it=myset.begin();
  do {
    cout << ' ' << *it;
  } while ( mycomp(*(++it),highest) );

  cout << '\n';

  return 0;
}

输出:

myset contains: 0 1 2 3 4

在上面的示例中,最高变量存储myset集合的最后一个元素,并使用该集合的第一个元素(按排序顺序)初始化迭代器。 Do-while循环用于打印将在其中运行循环的集合的元素,直到第一个键小于最后一个键为止(为此,它使用名为mycomp的key_comp()函数)。

value_comp - 例子3

让我们看一个简单的例子:

#include <set>
#include <iostream>

int main( )
{
   using namespace std;

   set <int, less<int> > s1;
   set <int, less<int> >::value_compare vc1 = s1.value_comp( );
   bool result1 = vc1( 2, 3 );
   if( result1 == true )   
   {
      cout << "vc1( 2,3 ) returns value of true, "
           << "where vc1 is the function object of s1."
           << endl;
   }
   else   
   {
      cout << "vc1( 2,3 ) returns value of false, "
           << "where vc1 is the function object of s1."
           << endl;
   }

   set <int, greater<int> > s2;
   set<int, greater<int> >::value_compare vc2 = s2.value_comp( );
   bool result2 = vc2( 2, 3 );
   if( result2 == true )   
   {
      cout << "vc2( 2,3 ) returns value of true, "
           << "where vc2 is the function object of s2."
           << endl;
   }
   else   
   {
      cout << "vc2( 2,3 ) returns value of false, "
           << "where vc2 is the function object of s2."
           << endl;
   }
}

输出:

vc1( 2,3 ) returns value of true, where vc1 is the function object of s1.
vc2( 2,3 ) returns value of false, where vc2 is the function object of s2.

value_comp - 例子4

让我们看一个简单的示例,以显示key_comp()和value_comp()之间的区别:

#include <set>
#include <iostream>
#include<map>

using namespace std;

int main(){

set<int> myset;
int highest1, highest2;

set<int>::key_compare   myCompKeyForSet = myset.key_comp();
set<int>::value_compare myCompValForSet = myset.value_comp();

for (int i=0; i<=5; i++) {
  myset.insert(i);
}

highest1=*myset.rbegin();
set<int>::iterator it=myset.begin();
while ( myCompKeyForSet(*it, highest1) ) it++;
cout << "\nhighest1 is " << highest1; //prints 5

highest2 = *myset.rbegin();
it=myset.begin();
while ( myCompValForSet(*it, highest2) ) it++;
cout << "\nhighest2 is " << highest2;  //prints 5

return 0;
}

输出:

highest1 is 5
highest2 is 5

在上面的示例中,当我们比较key_comp()和value_comp()时,对于这样的集合集合,这两个词是相同的。对于这两种类型的函数,它将返回相同的值。

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

趣谈网络协议 -〔刘超〕

高并发系统设计40问 -〔唐扬〕

移动端自动化测试实战 -〔思寒〕

Electron开发实战 -〔邓耀龙〕

说透敏捷 -〔宋宁〕

乔新亮的CTO成长复盘 -〔乔新亮〕

物联网开发实战 -〔郭朝斌〕

基于人因的用户体验设计课 -〔刘石〕

JavaScript进阶实战课 -〔石川〕

好记忆不如烂笔头。留下您的足迹吧 :)