在 C++ 中比较数组
本文将演示如何在 C++ 中比较数组的多种方法。
在 C++ 中使用 for
循环语句比较数组
在这些例子中,我们将使用一个变量数组容器-std::vector
。这个类有一个内置的操作符 ==
,我们可以用它来比较两个给定向量的内容。在这种情况下,我们不需要担心不同的向量长度,因为它们由该方法内部处理。返回值是带有 true
的布尔值,意味着两个向量相等。
注意,我们用 ? :
条件语句来评估表达式,并将相应的字符串信息打印到控制台。
#include <iostream>
#include <vector>
using std::cout; using std::cin;
using std::endl; using std::vector;
int main() {
vector<int> i_vec1 = {12, 32, 43, 53, 23, 65};
vector<int> i_vec2 = {12, 32, 43, 53, 23, 25};
vector<int> i_vec3 = {12, 32, 43, 53, 23, 65};
i_vec1 == i_vec2 ?
cout << "Vectors i_vec1 and i_vec2 are the same" << endl :
cout << "Vectors i_vec1 and i_vec2 are not the same" << endl;
i_vec1 == i_vec3 ?
cout << "Vectors i_vec1 and i_vec3 are the same" << endl :
cout << "Vectors i_vec1 and i_vec3 are not the same" << endl;
return EXIT_SUCCESS;
}
输出:
Vectors i_vec1 and i_vec2 are not the same
Vectors i_vec1 and i_vec3 are the same
在 C++ 中使用自定义定义的函数比较数组
前面的方法可以在用户的模板函数中进行泛化,如果需要,可以添加自定义的返回代码和异常处理。在这个例子中,我们实现了 compareVectorContents
函数,该函数接受两个 vector
引用,并使用 if
结构评估相等条件。
#include <iostream>
#include <vector>
using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector;
template<typename T>
bool compareVectorContents(vector<T> &vec1, vector<T> &vec2)
{
if (vec1 == vec2) {
return true;
} else {
return false;
}
}
int main() {
vector<int> i_vec1 = {12, 32, 43, 53, 23, 65};
vector<int> i_vec3 = {12, 32, 43, 53, 23, 65};
vector<int> i_vec4 = {12, 32, 43};
compareVectorContents(i_vec1, i_vec3) ?
cout << "Vectors i_vec1 and i_vec3 are the same" << endl :
cout << "Vectors i_vec1 and i_vec3 are not the same" << endl;
compareVectorContents(i_vec1, i_vec4) ?
cout << "Vectors i_vec1 and i_vec4 are the same" << endl :
cout << "Vectors i_vec1 and i_vec4 are not the same" << endl;
return EXIT_SUCCESS;
}
Vectors i_vec1 and i_vec3 are the same
Vectors i_vec1 and i_vec4 are not the same
在 C++ 中使用 std::equal
算法来比较数组
另一种比较两个向量内容的方法是 C++ 标准库中的 std::equal
算法,定义在 <algorithm>
头文件中。equal
方法需要 4 个参数代表两个需要比较的独立范围,因此提供了一个更通用的接口来处理比较。这个方法可以用于无序容器的迭代器形成的范围,即-std::unordered_set
,std::unordered_map
等。equal
返回值是布尔值,如果两个范围内的元素相同,则返回 true
。同时,如果传递的范围长度不同,函数将返回 false
。
#include <iostream>
#include <vector>
#include <algorithm>
using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector; using std::equal;
int main() {
vector<int> i_vec1 = {12, 32, 43, 53, 23, 65};
vector<int> i_vec2 = {12, 32, 43, 53, 23, 65};
vector<int> i_vec3 = {12, 32, 43};
equal(i_vec1.begin(), i_vec1.end(), i_vec2.begin(), i_vec2.end()) ?
cout << "Vectors i_vec1 and i_vec2 are the same" << endl :
cout << "Vectors i_vec1 and i_vec2 are not the same" << endl;
equal(i_vec1.begin(), i_vec1.end(), i_vec3.begin(), i_vec3.end()) ?
cout << "Vectors i_vec1 and i_vec3 are the same" << endl :
cout << "Vectors i_vec1 and i_vec3 are not the same" << endl;
return EXIT_SUCCESS;
}
输出:
Vectors i_vec1 and i_vec2 are the same
Vectors i_vec1 and i_vec3 are not the same
相关文章
在 C++ 中通过掷骰子生成随机值
发布时间:2023/04/09 浏览次数:169 分类:C++
-
本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。
在 C++ 中使用模板的链表
发布时间:2023/04/09 浏览次数:158 分类:C++
-
本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。
在 C++ 中添加定时延迟
发布时间:2023/04/09 浏览次数:142 分类:C++
-
本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。
在 C++ 中创建查找表
发布时间:2023/04/09 浏览次数:155 分类:C++
-
本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。
如何在 C++ 中把字符串转换为小写
发布时间:2023/04/09 浏览次数:63 分类:C++
-
介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码
如何在 C++ 中确定一个字符串是否是数字
发布时间:2023/04/09 浏览次数:163 分类:C++
-
本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。
如何在 c++ 中查找字符串中的子字符串
发布时间:2023/04/09 浏览次数:65 分类:C++
-
本文介绍了在 C++ 中检查一个字符串是否包含子字符串的多种方法。使用 find 方法在 C++ 中查找字符串中的子字符串
如何在 C++ 中把字符串转换为 Char 数组
发布时间:2023/04/09 浏览次数:107 分类:C++
-
本文介绍了在 C++ 中把字符串转换为 char 数组的多种方法。使用 std::basic_string::c_str 方法将字符串转换为 char 数组