当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ equal()用法及代码示例


C++ 算法 equal()function 比较两个容器中的元素,如果发现两个容器中的所有元素都匹配,则返回真值。第一个范围从 [first1,last1) 开始,第二个范围从 first2 开始。

用法

template<class InputIterator1, class InputIterator2> bool equal(InputIterator1 first1, InputIterator1 last1,InputIterator2 first2);
template<class InputIterator1, class InputIterator2, class BinaryPredicate> bool equal(InputIterator1 first1, InputIterator1 last1, InputIterator2 first1, BinaryPredicate pred);

参数

first1:它是[first1,last1)第一个元素的输入迭代器。

last1:它是[first1,last1)最后一个元素的输入迭代器。

first2:它是[first2,last2)第一个元素的输入迭代器。

pred: 它是一个二元函数,它接受两个元素作为参数并执行函数设计的任务。

返回值

如果两个容器中的所有元素都匹配,则该函数返回值 true,否则返回 false。

例子1

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
bool newpredicate(int m, int n)
{
	return(m==n);
}
int main()
{
	int newints[]={20,40,60,80,100};
	std::vector<int> newvector(newints, newints+5);
	if(std::equal(newvector.begin(),newvector.end(),newints))
	std::cout<<"Both the containers have matching elements.\n";
	else
	std::cout<<"Both the containers have difference elements.\n";
	newvector[3]=81;
	if(std::equal(newvector.begin(),newvector.end(),newints,newpredicate))
	std::cout<<"Both the containers have equal containers.\n";
	else
	std::cout<<"Both the containers do not have equal elements. \n";
	return 0;
}

输出:

Both the containers have matching elements.
Both the containers do not have equal elements.

例子2

#include<bits/stdc++.h>
using namespace std;
int main()
{
	int u1[]={10,20,30,40,50};
	std::vector<int> vec_1(u1,u1+sizeof(u1)/sizeof(int));
	std::cout<<"The vector consists of:";
	for(unsigned int k=0; k<vec_1.size(); k++)
	std::cout<<" "<<vec_1[k];
	std::cout<<"\n";
	if(std::equal(vec_1.begin(),vec_1.end(),u1))
	std::cout<<"Both the containers have equal elements.\n";
	else
	cout<<"Both containers have different elements.";
}

输出:

The vector consists of:10, 20,30,40,50
Both the containers have equal elements.

复杂度

该函数从 first1 元素到 last1 元素具有线性复杂度。

数据竞争

访问两个范围内的对象。

异常

如果任何参数抛出异常,该函数将抛出异常。






相关用法


注:本文由纯净天空筛选整理自 C++ Algorithm Function equal()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。