c:if equal_C ++中的std :: equal()

c:if equal

equal()作为STL函数 (equal() as a STL function)

Syntax:

句法:

bool equal(
InputIterator1 first1, 
InputIterator1 last1, 
InputIterator2 first2);

Where,

哪里,

  • InputIterator1 first = iterator to start of the first sequence range

    InputIterator1 first =迭代器,开始第一个序列范围

  • InputIterator1 last1 = iterator to end of the first sequence range

    InputIterator1 last1 =迭代到第一个序列范围的结尾

  • InputIterator2 first2 = iterator to start of the second sequence range

    InputIterator2 first2 =迭代器开始第二个序列范围

Return type: bool

返回类型: bool

  • True - if all elements are the same in both the ranges

    True-如果两个范围内的所有元素都相同

  • False - if all elements are not the same in both the ranges

    False-如果两个范围内的所有元素都不相同

The above syntax is used to compare elements using standard == operator.

上面的语法用于使用标准==运算符比较元素。

We can also define our user-defined binary predicate (instead of '==') for checking whether equal or not. The syntax with user-defined binary predicate is like below:

我们还可以定义用户定义的二进制谓词(而不是'==')来检查是否相等。 用户定义的二进制谓词的语法如下:

(Binary predicate is a function which takes two arguments and returns true or false only.)

(二元谓词是一个带有两个参数并且仅返回true或false的函数。)

bool equal(
InputIterator1 first1, 
InputIterator1 last1, 
InputIterator2 first2, 
BinaryPredicate pred);

Using the above syntax the elements of the corresponding ranges are checked via the predicate.

使用上述语法,可以通过谓词检查相应范围的元素。

So, as we found out the last iterator for the second range not being shared as it will compare only the same number of elements as of range 1. Also, it will check sequentially, which means [1,3,5] and [5,3,1] are not the same. So it has to be in the same order for both the range.

因此,我们发现第二个范围的最后一个迭代器没有共享,因为它只会比较范围1相同数量的元素。而且,它将顺序检查,这意味着[1、3、5]和[5] ,, 3,1]不一样。 因此,两个范围的顺序必须相同。

1)使用默认的'=='/'!='运算符 (1) Using default '==' / '!=' operator)

#include <bits/stdc++.h>
using namespace std;
int main()
{
vector<int> arr1{ 3, 2, 1, 4, 5, 6, 7 };
vector<int> arr2{ 3, 2, 1, 4, 5 };
if (equal(arr1.begin(), arr1.begin() + 5, arr2.begin())) {
cout << "both ranges are exactly equal \n";
}
else
cout << "both ranges are not exactly equal \n";
vector<int> arr3{ 1, 2, 3, 4, 5, 6, 7 };
vector<int> arr4{ 1, 2, 3, 4, 5 };
if (equal(arr3.begin(), arr3.end(), arr4.begin())) {
cout << "both ranges are exactly equal \n";
}
else
cout << "both ranges are not exactly equal \n";
return 0;
}

Output:

输出:

both ranges are exactly equal
both ranges are not exactly equal

In the above program, we have checked two cases and have used the default comparator. In the first case,

在上面的程序中,我们检查了两种情况,并使用了默认的比较器。 在第一种情况下,

The first range is arr1.begin() to arr1.begin()+5, i.e., only first five elements of arr1. The second range starts from arr2.begin() and it will check the first five elements only from the starting of range2. Since both are the same thus it's a match.

第一个范围是arr1.begin()arr1.begin()+ 5 ,即arr1的仅前五个元素。 第二个范围从arr2.begin()开始, 它将仅从 range2的开始检查前五个元素。 由于两者相同,因此是匹配项。

[3,2,1,4,5]

[3,2,1,4,5]

In the second case since we went for the total range of arr3, thus it was a mismatch.

在第二种情况下,由于我们使用了arr3的总范围,因此这是不匹配的。

2)使用用户定义的比较器功能 (2) Using user-defined comparator function)

Here we have taken a use case where we have two vectors for student details with five students each. By using our user-defined predict we are going to check whether both of the lists are equal or not. Both list are said to be equal if each of the student's details matches. To have a match for student details, all the details (roll, name, score) need to be the same.

在这里,我们以一个用例为例,我们有两个向量用于学生详细信息,每个向量有五个学生。 通过使用用户定义的预测,我们将检查两个列表是否相等。 如果每个学生的详细信息都匹配,则两个列表都相等。 要使学生的详细信息匹配,所有详细信息(名次,姓名,分数)必须相同。

#include <bits/stdc++.h>
using namespace std;
class student {
int score;
int roll;
string name;
public:
student()
{
score = 0;
roll = 0;
name = "";
}
student(int sc, int ro, string nm)
{
score = sc;
roll = ro;
name = nm;
}
int get_score()
{
return score;
}
int get_roll()
{
return roll;
}
string get_name()
{
return name;
}
};
bool pred(student a, student b)
{
//if all details are same return true else false
if (a.get_name() == b.get_name() && a.get_score() == b.get_score() && a.get_roll() == b.get_roll())
return true;
return false;
}
int main()
{
//1st list
vector<student> arr1(5);
//1st student
arr1[0] = student(80, 5, "XYZ"); //roll 5, marks 80
//2nd student
arr1[1] = student(70, 10, "INC"); //roll 10, marks 70
//3rd student
arr1[2] = student(85, 7, "HYU"); //roll 7, marks 85
//4th student
arr1[3] = student(83, 1, "EFG"); //roll 1,  marks 83
//5th student
arr1[4] = student(81, 11, "ABC"); //roll 11,  marks 81
//2nd list
vector<student> arr2(5);
//1st student
arr2[0] = student(80, 5, "XYZ"); //roll 5, marks 80
//2nd student
arr2[1] = student(70, 10, "INC"); //roll 10, marks 70
//3rd student
arr2[2] = student(85, 7, "HYU"); //roll 7, marks 85
//4th student
arr2[3] = student(83, 1, "EFG"); //roll 1,  marks 83
//5th student
arr2[4] = student(81, 11, "ABC"); //roll 11,  marks 81
//find check both lists are equal or not 
//based on user-defined predicate
if (equal(arr1.begin(), arr1.end(), arr2.begin(), pred))
cout << "Both lists arr1,arr2 are equal\n";
else
cout << "Both lists arr1,arr2 are not equal\n";
//3rd list
vector<student> arr3(5);
//1st student
arr3[0] = student(89, 5, "PVR"); //roll 5, marks 89
//2nd student
arr3[1] = student(70, 10, "INC"); //roll 10, marks 70
//3rd student
arr3[2] = student(85, 7, "HYU"); //roll 7, marks 85
//4th student
arr3[3] = student(83, 1, "EFG"); //roll 1,  marks 83
//5th student
arr3[4] = student(81, 11, "ABC"); //roll 11,  marks 81
//find check both lists are equal or not based 
//on user-defined predicate
if (equal(arr1.begin(), arr1.end(), arr3.begin(), pred))
cout << "Both lists arr1,arr3 are equal\n";
else
cout << "Both lists arr1,arr3 are not equal\n";
return 0;
}

Output:

输出:

Both lists arr1,arr2 are equal
Both lists arr1,arr3 are not equal

Here we have first created two lists with the same elements. Since both lists are of equal size that's why we found equal to return true. For the second case, we have altered an element in arr3 to make unequal and the same reflected in the output. In our user-defined predicate, we have returned true all if all details matched for two students.

在这里,我们首先创建了两个具有相同元素的列表。 由于两个列表的大小相等,因此我们发现等于返回true。 对于第二种情况,我们更改了arr3中的元素以使其不相等,并且在输出中反映出相同的内容。 在我们用户定义的谓词中,如果所有细节都匹配两个学生,则我们返回true。

So in this article, you saw how efficiently we can use equal to check two ranges are equal or not. An application of this can be checking whether an array is subarray of the other one or not.

因此,在本文中,您看到了我们可以使用equal来检查两个范围是否相等的效率。 这种方法的应用可以是检查一个数组是否是另一个数组的子数组 。

翻译自: https://www.includehelp.com/stl/std-equal-in-cpp.aspx

c:if equal

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/377062.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

《DBNotes:Buffer Pool刷脏页细节以及改进》

本笔记知识沿用之前DBNotes: Buffer Pool对于缓冲页的链表式管理的部分知识 目录获取一个空闲页的源码逻辑Page_Cleaner_ThreadLRU_Manager_ThreadHazard Pointer作为驱逐算法改进参考获取一个空闲页的源码逻辑 任何一个读写请求都需要从Buffer pool来获取所需页面。如果需要的…

WordPress删除数据中标题重复文章的方法

一种是删除重复的方法是&#xff1a;使用插件,大家可以去官网上下载 二种删除重复的方法是&#xff1a;登录数据库&#xff0c;使用sql语句删除&#xff0c;具体的语句为如下代码&#xff1a; CREATE TABLE my_tmp AS SELECT MIN(ID) AS col1 FROM wp_posts GROUP BY post_titl…

hibernate配置

hibernate.cfg.xml <?xml version"1.0" encoding"UTF-8"?> <!DOCTYPE hibernate-configuration PUBLIC"-//Hibernate/Hibernate Configuration DTD 3.0//EN""http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd&quo…

html中表单元素_HTML中的表单元素

html中表单元素1)<input>元素 (1) The <input> Element) The <input> element is used to get input from the user in an HTML form. <input>元素用于以HTML形式从用户获取输入。 <input> tag is used to get input using input element, the …

《搜索算法——DFS、BFS、回溯》

目录深搜200. 岛屿数量695. 岛屿的最大面积130. 被围绕的区域547. 省份数量417. 太平洋大西洋水流问题回溯广搜111. 二叉树的最小深度752. 打开转盘锁深搜与广搜结合934. 最短的桥深搜 深搜DFS&#xff0c;在搜索到一个新节点时&#xff0c;立即对该新节点进行遍历&#xff0c…

AP in R

AP聚类算法是目前十分火的一种聚类算法&#xff0c;它解决了传统的聚类算法的很多问题。不仅简单&#xff0c;而且聚类效果还不错。这里&#xff0c;把前两天学习的AP算法在R语言上面的模拟&#xff0c;将个人笔记拿出来与大家分享一下&#xff0c;不谈AP算法的原理&#xff0c…

nginx 模块解析

nginx的模块非常之多&#xff0c;可以认为所有代码都是以模块的形式组织&#xff0c;这包括核心模块和功能模块&#xff0c;针对不同的应用场合&#xff0c;并非所有的功能模块都要被用到&#xff0c;附录A给出的是默认configure&#xff08;即简单的http服务器应用&#xff09…

python关键字和保留字_Python关键字

python关键字和保留字关键词 (Keywords) Keywords are the reserved words in Python programming language (and, any other programming languages like C, C, Java, etc) whose meanings are defined and we cannot change their meanings. In python programming languages…

《LeetcodeHot100非困难题补录》

最近比较闲&#xff0c;也比较焦虑&#xff0c;刷刷题吧 目录11. 盛最多水的容器22. 括号生成31. 下一个排列48. 旋转图像49. 字母异位词分组56. 合并区间75. 颜色分类79. 单词搜索114. 二叉树展开为链表141. 环形链表148. 排序链表152. 乘积最大子数组169. 多数元素207. 课程表…

Java里String.split需要注意的用法

我们常常用String的split()方法去分割字符串&#xff0c;有两个地方值得注意&#xff1a; 1. 当分隔符是句号时(".")&#xff0c;需要转义&#xff1a; 由于String.split是基于正则表达式来分割字符串&#xff0c;而句号在正则表达式里表示任意字符。 //Wrong: //Str…

C# Socket 例子(控制台程序)

服务器代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.Net.Sockets; using System.IO;namespace TCPListener {class Program{static void Main(string[] args){const int BufferSize 1024;Con…

Scala中的值类

Value classes are a special mechanism in Scala that is used to help the compiler to avoid allocating run time objects. 值类是Scala中的一种特殊机制&#xff0c;用于帮助编译器避免分配运行时对象。 This is done by defining a subclass of AnyVal. The only parame…

《MySQL8.0.22:Lock(锁)知识总结以及源码分析》

目录1、关于锁的一些零碎知识&#xff0c;需要熟知事务加锁方式&#xff1a;Innodb事务隔离MVCC多版本并发控制常用语句 与 锁的关系意向锁行级锁2、锁的内存结构以及一些解释3、InnoDB的锁代码实现锁系统结构lock_sys_tlock_t 、lock_rec_t 、lock_table_tbitmap锁的基本模式的…

关于ORA-04021解决办法(timeout occurred while waiting to lock object)

某个应用正在锁定该表或者包 表为 select b.SID,b.SERIAL#,c.SQL_TEXT from v$locked_object a, v$session b, v$sqlarea c where a.SESSION_ID b.SID and b.SQL_ADDRESS c.ADDRESS and c.sql_text like %table_name% 包为 select B.SID,b.USERNAME,b.MACHINE FROM V$ACCESS …

HtmlAutoTestFrameWork

前段时间做的自动化测试的是Silverlight的&#xff0c;框架都已经搭好。突然测试发现这里还有一个要发送邮件的html页面&#xff0c;并且将另外启动浏览器&#xff0c;于是今天下午把这个html的也写出来。用法 &#xff1a; HtmlAutoTestFrameWork htf new HtmlAutoTestFrameW…

L8ER的完整形式是什么?

L8ER&#xff1a;稍后 (L8ER: Later) L8ER is an abbreviation of "Later". L8ER是“ Later”的缩写 。 It is an expression, which is commonly used in messaging or chatting on social media networking sites like Facebook, Yahoo Messenger, and Gmail, etc…

Randomize select algorithm 随机选择算法

从一个序列里面选择第k大的数在没有学习算法导论之前我想最通用的想法是给这个数组排序&#xff0c;然后按照排序结果返回第k大的数值。如果使用排序方法来做的话时间复杂度肯定至少为O&#xff08;nlgn&#xff09;。 问题是从序列中选择第k大的数完全没有必要来排序&#xff…

《Linux杂记:一》

目录CPU负载和CPU利用率CPU负载很高,利用率却很低的情况负载很低,利用率却很高常用linux命令常用的文件、目录命令常用的权限命令常用的压缩命令CPU负载和CPU利用率 可以通过 uptime , w 或者 top 命令看到CPU的平均负载。 Load Average :负载的3个数字,比如上图的0.57、0.4…

IOS Plist操作

代码&#xff1a;copy BUNDLE下的plist文件 到 library下面。 bundle下不支持些&#xff0c;library&#xff0c;doc路径支持读与写。 (void)copyUserpigListToLibrary {NSFileManager *fileManager [NSFileManager defaultManager];NSArray *paths NSSearchPathForDirector…

《线程管理:线程基本操作》

目录线程管理启动线程与&#xff08;不&#xff09;等待线程完成特殊情况下的等待&#xff08;使用trycath或rall&#xff09;后台运行线程线程管理 启动线程与&#xff08;不&#xff09;等待线程完成 提供的函数对象被复制到新的线程的存储空间中&#xff0c;函数对象的执行…